SSH 错误解决案例1:Read from socket failed: Connection reset by peer
2015-09-18 10:32 梁小白 阅读(10747) 评论(0) 编辑 收藏 举报今天早上天天连接的开发机突然报出连接错误。
这个错误是SSH最常见错误,造成的原因也是千奇百怪(具体可goole),下面描述我的server的问题:
客户端报错
[root@server]# ssh 192.168.1.22 Read from socket failed: Connection reset by peer
换个机器连接也不行,尝试重启server端的sshd,thanks god, 报错了
[root@GMTDev ssh]# service sshd restart Stopping sshd: [ OK ] Starting sshd: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Permissions 0755 for '/etc/ssh/ssh_host_rsa_key' are too open. It is required that your private key files are NOT accessible by others. This private key will be ignored. bad permissions: ignore key: /etc/ssh/ssh_host_rsa_key Could not load host key: /etc/ssh/ssh_host_rsa_key @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Permissions 0755 for '/etc/ssh/ssh_host_dsa_key' are too open. It is required that your private key files are NOT accessible by others. This private key will be ignored. bad permissions: ignore key: /etc/ssh/ssh_host_dsa_key Could not load host key: /etc/ssh/ssh_host_dsa_key [ OK ]
先解决这个错误吧
chmod 600 /etc/ssh/*key* service sshd restart
按理说,只有我自己用这个机器,不知道为什么权限莫名报错。
本文为原创内容,转载请注明出自 梁小白博客(http://biangbiang.cnblogs.com)