3

我已经设置了一个有多个用户的 VM。我的主要用户是 VM-User,使用该帐户我创建了另一个名为“Joe”的用户。我已经通过登录到 VM-User 克隆了一个 git repo,一切正常。

我遇到的问题是,当我尝试通过登录用户“Joe”来克隆相同的存储库时,它要求我输入 git 服务器的密码。

git clone git@0.0.0.0:repo.git some_folder

它的节目:

git@0.0.0.0's password: (asks me to type in a password)

我为“Joe”创建了一个 ssh 密钥并将其添加到 gitosis。

有谁知道我做错了什么?

提前致谢 :)

SSH 调试日志:

debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: email@example.com
debug1: Authentications that can continue: publickey,password
debug1: Trying private key: /home/joe/.ssh/id_rsa
debug1: Trying private key: /home/joe/.ssh/id_dsa
debug1: Trying private key: /home/joe/.ssh/id_ecdsa
debug1: Next authentication method: password
4

2 回答 2

2

您没有在克隆机器上设置授权密钥,否则 SSH 将永远无法执行此步骤:

 debug1: Next authentication method: password 

我会检查我在 VM 和克隆机器上是否拥有正确的密钥。

于 2013-01-28T21:32:41.767 回答
0

我遇到过同样的问题。我只是按 Enter 响应,Enter file in which to save the key (/c/Users/sposada/.ssh/id_rsa):然后复制id_rsa.pub并更改了服务器中的名称。

git 正在尝试从中获取 ssh 公钥,/home/joe/.ssh/id_rsa但您有/home/joe/.ssh/joe

于 2016-10-21T20:15:34.093 回答