ServerA上的root 要免密码登陆 ServerB 上的 testuser
在ServerA上执行如下命令:
# ssh-keygen -t rsa -P ''
# ssh-copy-id -i ~/.ssh/id_rsa.pub testuser@ServerB
接着输入testuser的密码
在ServerB上执行如下命令
# su testuser
# cd ~
# chmod 700 .ssh
# chmod 600 .ssh/authorized_keys
现在可以在ServerA上ssh直接登陆 testuser了
# ssh testuser@ServerB