0

我一直关注 SSH Git,而无需每次都输入密码

但现在我仍然每次都要输入密码。

[root@web2 .ssh]# pwd
/home/git/.ssh

[root@web2 .ssh]# /etc/init.d/sshd restart
Stopping sshd:                                             [  OK  ]
Starting sshd:                                             [  OK  ]
------------

caojinhuamatoMacBook-Pro:.ssh caojinhua$ ssh -p 2332 git@xx.xx.xx.xxx
The authenticity of host '[xx.xx.xx.xxx]:2332 ([xx.xx.xx.xxx]:2332)' can't be established.
RSA key fingerprint is 9b:e6:97:b1:a7:22:bd:b3:20:57:f3:0b:01:4e:b7:eb.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[xx.xx.xx.xxx]:2332' (RSA) to the list of known hosts.
git@xx.xx.xx.xxx's password: 
Last login: Mon Jun 27 11:00:16 2011 from 121.x8.23x.1x3
[git@web2 ~]$ 
4

2 回答 2

1

您应该确保权限为~/.ssh/authorized_keys600。

于 2011-06-27T03:13:17.360 回答
0

要么你没有正确添加密钥,要么密钥格式错误,要么你有权限问题,或者主机上的 SSH 配置只允许密码验证。

在四种可能性中,第二种可能性最大。例如,如果您将 SSH.com 格式的密钥剪切并粘贴到 authorized_keys 中,它将不起作用。您必须先将其转换为 OpenSSH 格式。

您的公钥在authorized_keys 中是什么样的?(发布它没有害处 - 毕竟它是一个公钥)

于 2011-06-29T17:26:45.903 回答