Linux コンピュータで に SSH 接続しようとすると、ターミナルに以下のメッセージが表示されることがあります:
$ ssh -vT git@ホスト名
> ...
> Agent admitted failure to sign using the key.
> debug1: No more authentication methods to try.
> Permission denied (publickey).
詳細については、この問題のレポートを参照してく� さい。
解像度
ssh-add
を使用してキーを SSH エージェントに読み込ませることでこのエラーを修正できます。
# start the ssh-agent in the background
$ eval "$(ssh-agent -s)"
> Agent pid 59566
$ ssh-add
> Enter passphrase for /home/you/.ssh/id_rsa: [tippy tap]
> Identity added: /home/you/.ssh/id_rsa (/home/you/.ssh/id_rsa)
キーに既定のファイル名 (/.ssh/id_rsa
) がない� �合は、そのパスを ssh-add
に渡す必要があります。
# start the ssh-agent in the background
$ eval "$(ssh-agent -s)"
> Agent pid 59566
$ ssh-add ~/.ssh/my_other_key
> Enter passphrase for /home/you/.ssh/my_other_key: [tappity tap tap]
> Identity added: /home/you/.ssh/my_other_key (/home/you/.ssh/my_other_key)