Ubuntu (linux)
Ubuntu linux Agent admitted failure to sign using the key Error 대처법
인포개더러
2013. 1. 11. 11:38
Ubuntu linux Agent admitted failure to sign using the key Error 대처법
ssh 로 연결시 "Agent admitted failure to sign using the key" Error 가 발생하는 경우가 있습니다.
아래는 git clone, repo init 을 하는 과정에서 ssh 를 사용할때 발생한 Error 입니다.
$ repo init -u ssh://git-repo@192.168.10.2/new.git/manifest -b newbranch -m newmanifest.xml
Get ssh://git-repo@192.168.10.2/new.git/manifest
Agent admitted failure to sign using the key.
git-repo@192.168.10.2's password: Agent admitted failure to sign using the key.
git-repo@192.168.10.2's password:
이는 연결하려고 하는 client 측의 ssh 사용이 설정되지 않았기 때문입니다.
이때 콘솔에서
$ ssh-add
라고 입력하면 이후 정상적으로 사용 가능합니다.