1.在客户端生成公钥私钥对
命令:ssh-keygen -t rsa
一路默认回车,系统在/root/.ssh下生成id_rsa、id_rsa.pub
2.查看系统生成的公钥私钥对
命令:ls /root/.ssh
id_rsa id_rsa.pub
3.将生成的公钥私钥对id_rsa.pub发送到其他的服务器上。
命令:ssh-copy-id -i /root/.ssh/id_rsa.pub 192.168.85.131
注:命令可简单记忆为 ssh-copy-id -i 公钥私钥对文件 服务器ip地址
4.检验ssh 192.168.85.131