반응형
오늘은 ssh error(WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!)
해결 방법에 대해 포스팅하려고 합니다.
아래 명령어와 같이 일반적으로 흔히 사용하는 ssh 명령어를 입력했을 때
네트워크 연결 이슈, 방화벽 이슈, 계정의 이슈가 아닌 접속에는 문제가 없지만
다음과 같은 에러가 나타나는 경우가 있습니다.
ssh gsjeong@192.168.61.23 -p 8022
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ECDSA key sent by the remote host is
SHA256:J3sSvNqZIem/m4faOKUYvckff5eTL2MGEOgQ+OoMmT8.
Please contact your system administrator.
Add correct host key in C:\\Users\\gsjeong/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in C:\\Users\\gsjeong/.ssh/known_hosts:19
ECDSA host key for [192.168.61.23]:8022 has changed and you have requested strict checking.
Host key verification failed.
일반적으로 ssh연결을 하게 되면 연결하려고 하는 host에 known_hosts라는 파일이 생성됩니다.
known_hosts 파일 경로는 에러가 나타날 때 표시됩니다.
해당 에러를 해결하는 방법은 매우 간단합니다.
known_hosts 파일의 내용을 제거하거나 파일 자체를 제거하면 해결됩니다.
known_hosts 파일은 ssh 접속할 때 자동으로 생성되기 때문에 문제가 없습니다.
지금까지 ssh error(WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!)
해결 방법에 대한 포스팅이었습니다.
반응형
'Develope > Linux' 카테고리의 다른 글
[Linux] shellinabox를 이용한 리눅스 web-console 및 web-ssh 사용방법 (0) | 2022.08.02 |
---|---|
[Linux] ubuntu 화살표키(arrow key) 사용시 개행문자 A,B,C,D 발생 이슈 해결 방법 (0) | 2022.07.09 |
[Linux] CentOS7에서 python 패키지 수동 설치 방법 (0) | 2022.05.12 |
[Linux] CentOS7에서 python version upgrade 방법 (2) | 2022.04.06 |
[Linux] syntax error: unexpected end of file 오류 해결 방법 (0) | 2022.04.06 |