修改sshd配置檔案
vim /etc/ssh/sshd_config
#增加以下三項
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
在root目錄下建立.ssh檔案夾
[root@localhost /]# mkdir .ssh
在.ssh檔案夾下建立authorized_keys檔案
[root@localhost /]# cd .ssh
[root@localhost .ssh]# touch
寫入秘鑰
[root@localhost .ssh]# vim authorized_keys
修改authorized_keys執行權限
[root@localhost .ssh]# chmod 644
重新開機ssh服務
[root@localhost .ssh]# systemctl restart sshd