Skip to main content

오류: 에이전트가 서명 실패를 인정했습니다.

드문 경우지만 Linux에서 SSH를 통해 GitHub Enterprise Cloud에 연결하면 "Agent admitted failure to sign using the key" 오류가 발생합니다. 이 문제를 해결하려면 다음 단계를 수행합니다.

Linux 컴퓨터에서 GitHub.com에 SSH를 시도하면 터미널에 다음 메시지가 표시될 수 있습니다.

$ ssh -vT git@github.com
> ...
> Agent admitted failure to sign using the key.
> debug1: No more authentication methods to try.
> Permission denied (publickey).

자세한 내용은 Canonical 실행 패드에서 이 문제 보고서를 참조하세요.

해결

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)