1、每台機器上配置好hosts
2、每台機器上都要執行這個:ssh-keygen -t rsa -C 'comment'
3、每台機器上都要執行這個指令:ssh-copy-id -i ~/.ssh/id_rsa.pub user_name@hostname(這個指令的意思是講本機器的公鑰追加到其他機器上,每台機器都要執行再次強調)
4、修改權限
//使用者權限(後面是使用者名)
chmod 700 /home/user1
//.ssh檔案夾權限
chmod 700 ~/.ssh/
// ~/.ssh/authorized_keys 檔案權限
chmod 600 ~/.ssh/authorized_keys
//使用者權限(後面是使用者名) chmod 700 /home/user1 //.ssh檔案夾權限 chmod 700 ~/.ssh/ // ~/.ssh/authorized_keys 檔案權限 chmod 600 ~/.ssh/authorized_keys