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