1.切换到要建立互信的用户(以root为例):
su - root
cd ~
2.制作密钥并赋权:
# ssh-keygen -t dsa #出现提示默认回车不要输入
# cat .ssh/id_dsa.pub >> .ssh/authorized_keys
# chmod 644 ~/.ssh/authorized_keys
# chmod 755 ~/.ssh
3.创建config文件,取消主机间authenticity of host提示,保存,退出:
#su - root
#vi ~/.ssh/config
StrictHostKeyChecking on
#chmod 600 config
4.把公钥拷贝到所有节点root用户文件夹下:
#su - root
#scp -r ~/.ssh root@node:~/
root@node's password:
5.验证互信关系是否生效(没有任何提示或警告则生效):
ssh root@node date
Linux配置SSH互信步骤:http://www.linuxdiyf.com/linux/2012.html
Linux上操作SSH互信:http://www.linuxdiyf.com/linux/1187.html