在Rocky Linux上啟用和配置SSH密鑰認證的步驟如下:
生成SSH密鑰對:
ssh-keygen -t rsa
將公鑰添加到目標主機的authorized_keys文件:
設置SSH配置文件:
PubkeyAuthentication yes
PasswordAuthentication no
ChallengeResponseAuthentication no
sudo systemctl restart sshd
測試SSH密鑰認證:
ssh username@hostname
通過以上步驟,您可以在Rocky Linux上啟用和配置SSH密鑰認證。