轉載(親測)ssh 連不上Socket error Event: 32 Error: 10053.

一般性的安裝修改配置文件都不能解決,如https://www.cnblogs.com/winyh/p/9599369.html,都是出現下面的錯誤

Connecting to 192.168.122.39:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.

Socket error Event: 32 Error: 10053.
Connection closing...Socket close.

Connection closed by foreign host.

Disconnected from remote host(192.168.122.39) at 21:08:45.
直到找到這個老哥寫的方法:試了一下果然可以。太感謝了。https://www.cnblogs.com/hjj801006/p/10898355.html

今天在使用xshell連接剛裝的linux系統的時候,發現無法建立連接,會報如下錯誤:

Connecting to 192.168.21x.x:22...
Connection established.
To escape to local shell, press Ctrl+Alt+].

Socket error Event: 32 Error: 10053.
Connection closing...Socket close.

 

原因是:/etc/ssh下面沒有sshd_config.ucf-dist  ssh_host_ecdsa_key  ssh_host_ecdsa_key.pub  ssh_host_ed25519_key  ssh_host_ed25519_key.pub  ssh_host_rsa_key  ssh_host_rsa_key.pub  ssh_import_id

這些文件。

解決方法:

1)sudo dpkg-reconfigure openssh-server

會重新生成上面的一些文件。

2)cd /etc/ssh

chmod 400 ./*

3)重啓sshd

sudo systemctl restart sshd

xshell再次連接,成功!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章