SSHで接続しようとしたときに「WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!」とエラーが表示され接続できなかったときの対処法。
クライアント側に保存されている鍵情報とサーバ側の鍵情報が不一致だった場合にこのエラーが出力される。
MBP:~ user$ ssh sshuser@192.168.1.111
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ 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 RSA key sent by the remote host is SHA256:hogehogefugafuga.
Please contact your system administrator. Add correct host key in /Users/user/.ssh/known_hosts to get rid of this message.
Offending RSA key in /Users/user/.ssh/known_hosts:29 RSA host key for 192.168.1.111 has changed and you have requested strict checking.
Host key verification failed.
クライアント側に保存されているサーバーの鍵情報を下記コマンドで削除すればエラーは解消される。
このとき.oldとしてバックアップも生成される。
MBP:~ user$ ssh-keygen -R 192.168.1.111
# Host 192.168.1.111 found: line 29
/Users/user/.ssh/known_hosts updated.
Original contents retained as /Users/user/.ssh/known_hosts.old
次回アクセス時に再度サーバーの鍵情報がされ解決。
MBP:~ user$ ssh sshuser@192.168.1.111
The authenticity of host '192.168.1.111 (192.168.1.111)' can't be established.
RSA key fingerprint is SHA256:fugafugahogehoge.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.1.111' (RSA) to the list of known hosts.
sshuser@192.168.1.111's password:
Remote:~ sshuser$