{"meta":{"title":"오류: 에이전트가 서명 실패를 인정했습니다.","intro":"드문 경우지만 Linux에서 SSH를 통해 GitHub에 연결하면 \"Agent admitted failure to sign using the key\" 오류가 발생합니다. 이 문제를 해결하려면 다음 단계를 수행합니다.","product":"인증","breadcrumbs":[{"href":"/ko/enterprise-cloud@latest/authentication","title":"인증"},{"href":"/ko/enterprise-cloud@latest/authentication/troubleshooting-ssh","title":"SSH 문제 해결"},{"href":"/ko/enterprise-cloud@latest/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign","title":"에이전트 서명 실패"}],"documentType":"article"},"body":"# 오류: 에이전트가 서명 실패를 인정했습니다.\n\n드문 경우지만 Linux에서 SSH를 통해 GitHub에 연결하면 \"Agent admitted failure to sign using the key\" 오류가 발생합니다. 이 문제를 해결하려면 다음 단계를 수행합니다.\n\nLinux 컴퓨터에서 GitHub.com에 SSH를 시도하면 터미널에 다음 메시지가 표시될 수 있습니다.\n\n```shell\n$ ssh -vT git@github.com\n> ...\n> Agent admitted failure to sign using the key.\n> debug1: No more authentication methods to try.\n> Permission denied (publickey).\n```\n\n자세한 내용은 Canonical 실행 패드에서 [이 문제 보고서](https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/201786)를 참조하세요.\n\n## 해결 방법\n\n`ssh-add`로 SSH 에이전트에 키를 로드하여 이 오류를 해결할 수 있습니다.\n\n```shell\n# start the ssh-agent in the background\n$ eval \"$(ssh-agent -s)\"\n> Agent pid 59566\n$ ssh-add\n> Enter passphrase for /home/YOU/.ssh/id_rsa: [tippy tap]\n> Identity added: /home/YOU/.ssh/id_rsa (/home/YOU/.ssh/id_rsa)\n```\n\n키에 기본 파일 이름(`/.ssh/id_rsa`)이 없으면 경로를 `ssh-add`로 전달해야 합니다.\n\n```shell\n# start the ssh-agent in the background\n$ eval \"$(ssh-agent -s)\"\n> Agent pid 59566\n$ ssh-add ~/.ssh/my_other_key\n> Enter passphrase for /home/YOU/.ssh/my_other_key: [tappity tap tap]\n> Identity added: /home/YOU/.ssh/my_other_key (/home/YOU/.ssh/my_other_key)\n```"}