本文总结 ssh 其他pc时失败的可能原因及其解决方案的不完全总结。

Updated: 2022 / 9 / 16


Linux | ssh失败的可能原因及解决方案不完全总结


ESCDA host key

问题描述

当在使用 SSH 连线到别台主机时,有时会出现以下错误 1,如下图所示:

在这里插入图片描述


解决方法

  1. 把有问题的 192.168.2.151KEY 删掉 2;
[root@localhost ~]# vim /root/.ssh/known_hosts
  1. 把整个 known_hosts 删掉 2;
[root@localhost ~]# rm -rf  /root/.ssh/known_hosts
  1. 将此有问题的移除,下次登入就可正常 3;
    使用 ssh-keygen -R <host>,比如,
[root@localhost ~]# ssh-keygen -R 192.168.2.151

ssh-Keygen 的手册来看,

-R hostname Removes all keys belonging to hostname from a known_hosts file. This option is useful to delete hashed hosts (see the -H option above).

参考链接


  1. ssh remote host identification has changed ↩︎

  2. SSH連線出現錯誤 WARNING REMOTE HOST IDENTIFICATION HAS CHANGED ↩︎ ↩︎

  3. How to fix warning about ECDSA host key ↩︎

Logo

更多推荐