如何解决ssh_exchange_identification: Connection closed by remote host
时间: 2023-12-19 14:32:17 浏览: 261
login.rar_SSH登陆_java ssh_site:www.pudn.com_ssh_登陆
根据提供的引用内容,解决"ssh_exchange_identification: Connection closed by remote host"错误的方法是修改SSH服务器的配置文件。具体步骤如下:
1. 使用管理员权限打开SSH服务器的配置文件`/etc/ssh/sshd_config`。
2. 找到`PasswordAuthentication`这一行,并将其值改为`yes`。
3. 保存并关闭文件。
4. 重启SSH服务器,以使更改生效。
下面是一个示例的命令行操作:
```shell
sudo nano /etc/ssh/sshd_config
```
找到以下行并修改:
```
PasswordAuthentication yes
```
保存并关闭文件后,重启SSH服务器:
```shell
sudo service ssh restart
```
这样,你应该能够成功解决"ssh_exchange_identification: Connection closed by remote host"错误。
阅读全文