服务器A(假设为10.64.104.11) 免密登录服务器B(10.64.104.22)
1、登录服务器A
2、生成公私钥
ssh-keygen -t rsa
3、将生成的.pub文件发送到服务器B上
ssh-copy-id -i ~/.ssh/id_rsa.pub root@10.64.104.22
4、登录服务器B
ssh root@10.64.104.22
1、登录服务器A
2、生成公私钥
ssh-keygen -t rsa
3、将生成的.pub文件发送到服务器B上
ssh-copy-id -i ~/.ssh/id_rsa.pub root@10.64.104.22
4、登录服务器B
ssh root@10.64.104.22