vm3: Warning: Permanently added 'vm3,192.168.116.146' (ECDSA) to the list of known hosts. localhost: Warning: Permanently added 'localhost' (ECDSA) to the list of known hosts.这个什么解决
时间: 2024-03-01 20:54:44 浏览: 177
Ansible报错解决方法...added 'IP' (ECDSA) to the list of known hosts
5星 · 资源好评率100%
这个是SSH连接时的警告信息,通常不会影响到SSH连接的使用。如果你想要不再显示这个警告信息,可以在SSH连接的命令中加上参数"-q",例如:
```
ssh -q user@host
```
或者在SSH配置文件中添加以下配置:
```
Host *
LogLevel QUIET
```
这样就可以禁止显示警告信息了。
阅读全文