gpt4 book ai didi

git - [ubuntu 13.04] 为什么我的 git 使用不同的 key 文件?

转载 作者:太空宇宙 更新时间:2023-11-03 16:59:54 25 4
gpt4 key购买 nike

我想通过 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 命令应该检索默认的 ssh key 文件它应该存储在/root/.ssh/为什么 ssh 获取其他文件?它在哪里?

这意味着它们是完全不同的文件!!!

最佳答案

Are you sure you want to continue connecting (yes/no)? no

您应该回答"is"(这会将主机添加到您的 ~/.ssh/known_hosts 文件中)。
这与您的 ssh 公钥无关。

这不是您的“使用不同文件的 git”。

这是您的 ssh session ,要求您确认您知道此远程主机。
然后 ssh 将使用您的公钥。

一个简单的ssh -T git@git.cloudbees.com会触发相同的消息(至少在您接受该主机之前)。
(或 you can use ssh-keyscan )

关于git - [ubuntu 13.04] 为什么我的 git 使用不同的 key 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18822488/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com