본문 바로가기

개발 이야기/리눅스 개발

SFTP 또는 SSH - Too many authentication failures 오류

728x90

방법1. 등록된 키 초기화

$ ssh-add -D

 

방법2. ~/.ssh/config 에 IdentitiesOnly = yes 추가

Host http://www.somehost.com
IdentityFile ~/.ssh/key_for_somehost_rsa
IdentitiesOnly yes
Port 22

 

방법3. SSH 터미널 접속 PubkeyAuthentication=no 옵션

ssh -p 22 -o PubkeyAuthentication=no username@somehost.com

 

(출처:  https://itzone.tistory.com/666  )

 

 

그럼,

    공유합니다.

728x90