[NAS] Docker SSH 접속 Error (key_exchange_identification: Connection closed by remote host)
NAS docker에 올린 ubuntu에 ssh 접속이 안되는 문제가 발생하였다.
$ ssh [IP] -p [Port] kex_exchange_identification: Connection closed by remote host Connection closed by [IP] port [Port]
다음과 같이 host, 즉 NAS에서 docker의 ssh를 재실행 해주었다.
$ docker exec mercury service ssh restart * Restarting OpenBSD Secure Shell server sshd ...done.
참고로 내 docker container 이름은 mercury
다. 그리고 나니 정상적으로 동작을 확인 할 수 있었다.
One Comment
dealenx
Thank you very much! Very helpful!