要在CentOS中設置SSH密鑰認證登錄,您需要按照以下步驟操作:
ssh-keygen -t rsa
根據提示輸入要保存密鑰的文件路徑和設置密碼。
ssh-copy-id username@server_ip
需要替換 username 和 server_ip 為目標服務器的用戶名和IP地址。
PubkeyAuthentication yes
PasswordAuthentication no
ChallengeResponseAuthentication no
然后重新啟動 SSH 服務:
sudo systemctl restart sshd
ssh username@server_ip
如果一切配置正確,您應該可以無需輸入密碼直接登錄到服務器。
通過以上步驟,您就成功設置了在CentOS中使用SSH密鑰認證登錄。