码迷,mamicode.com
首页 > 其他好文 > 详细

SSH "Write failed:Broken pipe"超时相关问题修复

时间:2015-02-22 17:22:05      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:ssh

博主热衷各种互联网技术,常啰嗦,时常伴有强迫症,常更新,觉得文章对你有帮助的可以关注我。 转载请注明"深蓝的镰刀"


在使用ssh时经常因为一段时间没有操作ssh,便出现了“Write failed:Broken pipe”的错误提示,然后就要重新再登录ssh的情况。

原因就是超过了服务器需要客户端发出响应的时间,解决办法只要配置一下服务器上的SSH即可。

打开/etc/ssh/sshd_config

vim /etc/ssh/sshd_config 

配置以下两项

ClientAliveInterval 360 
ClientAliveCountMax 10

其中ClientAliveInterval表示允许每次超时的间隔(单位秒),ClientAliveCountMax表示允许超时的次数,结合起来就是允许超时360 * 10 秒(1小时)

重启以下ssh服务

service sshd restart

Stopping sshd:                                             [  OK  ]

Starting sshd:                                             [  OK  ]


done。


SSH "Write failed:Broken pipe"超时相关问题修复

标签:ssh

原文地址:http://blog.csdn.net/hornedreaper1988/article/details/43907819

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!