ssh错误,并显示消息“警告:远程主机标识已更改!”

I got an error message when ssh to a server like:

ssh到类似服务器时收到错误消息:

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    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
29:c1:7d:59:83:23:40:fe:3c:ff:e0:b9:a4:d4:49:10.
Please contact yoursystem administrator.
Add correct host key in /home/user/.ssh/known_hosts to get rid of this
message.
Offending RSA key in /home/user/.ssh/known_hosts:24
RSA host key for gpu1.example.com has changed and you have requested strict
checking.
Host key verification failed.
lost connection

How to fix it?

如何解决?

That’s usually because hpc1 changed its public key.

这通常是因为hpc1更改了其公钥。

You may run this command

您可以运行此命令

ssh-keygen -R gpu1.example.com

Here, the gpu1.example.com can be replaced with the server domain you are connecting to.

在这里,可以将gpu1.example.com替换为您要连接的服务器域。

to delete the record of the public key for the server and it will re-download its key.

删除服务器的公共密钥记录,它将重新下载其密钥。

Answered by Eric Z Ma.
埃里克·马(Eric Z Ma)回答。

翻译自: https://www.systutorials.com/ssh-error-with-message-warning-remote-host-identification-has-changed/

你可能感兴趣的:(ssh,java,linux,python,centos)