ソースコードをgit経由でサーバーに複製したいので、次のようにします。
root@wemet:~# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
79:ff:5d:07:9f:64:a7:d2:3f:81:0c:4d:ac:54:4e:fe root@wemet
The key's randomart image is:
+--[ RSA 2048]----+
| oo |
| .+o |
| . +o |
| . o .. |
| S . o oE.|
| . . +o=o|
| o o.=|
| o +o|
| . +|
+-----------------+
root@wemet:~# git clone ssh://git@git.cloudbees.com/foretribe/wetest.git
Cloning into 'wetest'...
The authenticity of host 'git.cloudbees.com (54.235.125.211)' can't be establis
ed.
ECDSA key fingerprint is 39:fe:eb:80:cd:56:bb:42:0e:bc:77:85:2c:9b:14:d2.
Are you sure you want to continue connecting (yes/no)? no
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
root@wemet:~#
ssh-keygen がフィンガープリント 79:ff:5d:07:9f:64:a7:d2:3f:81:0c:4d:ac:54:4e:fe でファイルを生成するのを見ることができますが、適用したい場合はgit コマンド ファイルのフィンガープリントは次のとおりです: 39:fe:eb:80:cd:56:bb:42:0e:bc:77:85:2c:9b:14:d2
git コマンドは、/root/.ssh/ に保存する必要があるデフォルトの ssh キー ファイルを取得する必要があります。なぜ ssh は他のファイルを取得するのですか? どこですか?
つまり、それらはまったく異なるファイルです!!!