首页 > 代码库 > “root@localhost's password:”说明ssh互信没有建立起来

“root@localhost's password:”说明ssh互信没有建立起来

ssh-keygen -t dsa出现提示都回车就行。
cd ~/.ssh
cat id_dsa.pub >> authorized_keys
然后ssh localhost如果不需要密码就是设置成功了。
如果不成功,检查authorized_keys和.ssh目录的权限
chmod 644 authorized_keys
cd ~
chmod 700 .ssh
应该就可以了。

“root@localhost's password:”说明ssh互信没有建立起来