Linux | ssh失败的可能原因及解决方案不完全总结
本文总结ssh其他pc时失败的可能原因及其解决方案的不完全总结。
·
本文总结 ssh
其他pc时失败的可能原因及其解决方案的不完全总结。
Updated: 2022 / 9 / 16
Linux | ssh失败的可能原因及解决方案不完全总结
ESCDA host key
问题描述
当在使用 SSH
连线到别台主机时,有时会出现以下错误 1,如下图所示:
解决方法
- 把有问题的
192.168.2.151
的KEY
删掉 2;
[root@localhost ~]# vim /root/.ssh/known_hosts
- 把整个
known_hosts
删掉 2;
[root@localhost ~]# rm -rf /root/.ssh/known_hosts
- 将此有问题的移除,下次登入就可正常 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).
参考链接
更多推荐
已为社区贡献3条内容
所有评论(0)