windows7にインストールしたgit bashでbitbucketからcloneをしたいのですが、time outしてしまいうまくいきません。
開発環境(linux)と、macでは問題なくcloneできているのですが、windowsのみうまくいきません。
実施手順などをこちらに記載しますので、間違いや、確認した方がいいことなど助言いただきたいです。
よろしくお願いします。
$ pwd /c/Users/kuniatsu/.ssh $ ls dev_rsa config id_rsa id_rsa.pub known_hosts $ rm -rf id_*
秘密鍵・公開鍵の削除をしております。
一緒にあるdev_rsaは開発環境にssh接続するための秘密鍵になります。
$ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/c/Users/kuniatsu/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /c/Users/kuniatsu/.ssh/id_rsa. Your public key has been saved in /c/Users/kuniatsu/.ssh/id_rsa.pub. The key fingerprint is: The key's randomart image is: +---[RSA 3072]----+ | ..+BBoE=| | oo**X=X| | .+o=o*=| | . .+ o o| | S . + o.| | o + + .| | . + + | | . .=| | .=o| +----[SHA256]-----+ $ cd ../Documents/src $ cat id_rsa.pub 〜省略〜 $ git clone ssh://git@develop99.prd.atls.nhn.co.jp:7999/tech/nhn.git Cloning into 'nhn'... ssh: connect to host develop99.prd.atls.nhn.co.jp port 7999: Connection timed out fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
ssh-keygenでkeyを作成し、catで確認後にbitbucketの
アカウント管理
-> SSHキー
-> キーを追加
に貼り付けております。
公開鍵の登録が完了したため、bitbucketのリポジトリページのクローンからSSHのアドレスをコピーして、
git clone
を行っております。
$ vi ../../.ssh/config $ git clone ssh://git@develop99.prd.atls.nhn.co.jp:7999/tech/nhn.git Cloning into 'nhn'... ssh: connect to host develop99.prd.atls.nhn.co.jp port 7999: Connection timed out fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. $ vi ../../.ssh/config $ cat ../../.ssh/config Host dev HostName 192.168.199.77 User kuniatsu IdentityFile ~/.ssh/dev_rsa Port 22 TCPKeepAlive yes IdentitiesOnly yes Host bitbucket HostName bitbucket.org User git IdentityFile ~/.ssh/id_rsa Port 22 TCPKeepAlive yes IdentitiesOnly yes $ git clone ssh://git@develop99.prd.atls.nhn.co.jp:7999/tech/nhn.git Cloning into 'nhn'... ssh: connect to host develop99.prd.atls.nhn.co.jp port 7999: Connection timed out fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. $ vi ../../.ssh/config $ cat ../../.ssh/config Host dev HostName 192.168.199.77 User kuniatsu IdentityFile ~/.ssh/dev_rsa Port 22 TCPKeepAlive yes IdentitiesOnly yes Host bitbucket HostName bitbucket.org User git IdentityFile ~/.ssh/id_rsa Port 7999 TCPKeepAlive yes IdentitiesOnly yes $ git clone ssh://git@develop99.prd.atls.nhn.co.jp:7999/tech/nhn.git Cloning into 'nhn'... ssh: connect to host develop99.prd.atls.nhn.co.jp port 7999: Connection timed out fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
ことごとくtime outしています。
configファイルの設定を、
cloneのアドレスが7999になっていたため22を7999にしましたが、同じようにtimeoutしました。
configファイルの設定を、
HostName->develop99.prd.atls.nhn.co.jpに変更しましたが同じようにtimeoutしました。
$ ls ../../.ssh/ dev_rsa config id_rsa id_rsa.pub known_hosts $ ls -al ../../.ssh/ total 23 drwxr-xr-x 1 kuniatsu 1234567 0 2月 21 17:54 ./ drwxr-xr-x 1 kuniatsu 1234567 0 2月 21 17:54 ../ -rw-r--r-- 1 kuniatsu 1234567 1675 10月 4 18:15 dev_rsa -rw-r--r-- 1 kuniatsu 1234567 287 2月 21 17:54 config -rw-r--r-- 1 kuniatsu 1234567 2602 2月 21 17:46 id_rsa -rw-r--r-- 1 kuniatsu 1234567 569 2月 21 17:46 id_rsa.pub -rw-r--r-- 1 kuniatsu 1234567 396 10月 4 18:15 known_hosts
秘密鍵の権限を気にしました。
chmodしても600にならず、調べたらwindowsは -rw-r--r--
で
固定とのことだったため、何もしておりません。
私が試していることは以上になりますが、
他に試すべきことや、調査に必要なポイント、勘所などありましたら
教えてください。
よろしくお願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/22 01:07