Ubuntu linux Agent admitted failure to sign using the key Error 대처법
Ubuntu (linux) 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
라고 입력하면 이후 정상적으로 사용 가능합니다.
'Ubuntu (linux)' 카테고리의 다른 글
Ubuntu Linux Proxy network 에서 ssh 연결하기 (0) | 2013.01.24 |
---|---|
/proc folder 내부의 파일의 용도 (0) | 2013.01.18 |
Ubuntu Linux grep egrep 명령어 사용법 (0) | 2013.01.07 |
Ubuntu Linux sudo: unable to resolve host PCName (0) | 2013.01.07 |
Ubuntu linux 에서 samba folder mount 하기 (0) | 2013.01.05 |