公開鍵でログインしようとすると、SSHはパスワードを要求します。

公開鍵でログインしようとすると、SSHはパスワードを要求します。

この行は私のサーバーに存在しますが、/etc/ssh/ssd_config

RSAAuthentication yes
PubkeyAuthentication yes

認証に使用される秘密鍵を明示的に提供して上記のサーバーにログインしようとすると、パスワードの入力を求められます。

$ ssh -i ~/Desktop/some_id_rsa myusername@server-hostname
myusername@server-hostname's password: 

ベストアンサー1

権限を変更してくださいauthorized_keys

chmod 600 ~/.ssh/authorized_keys

おすすめ記事