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

ssh 链接服务器出现 Write failed: Broken pipe

时间:2016-01-22 00:01:31      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

方法来源 Ssh “Write failed: Broken pipe” - NewInstance

I started to get this error “Write failed: Broken pipe” when I was leaving the terminal alone.
Since plumbers are still expensive, despite the crisis, I decided to fix the pipe by myself.
Very easy, just add the following line to /etc/ssh/sshd_config:

ClientAliveInterval 60

This will send a “keep-alive” packet from the server to the terminal client every 60 seconds so that the connection doesn’t get dropped.

If you can’t fix it on the server, for example if you don’t have administrative rights, you can fix your client to send the “keep-alive” packet to the server every 60 seconds, adding this line to ~/.ssh/config

ServerAliveInterval 60

It’s also possible to specify the ServerAliveInterval at the ssh command line:

$ ssh -o ServerAliveInterval=60 user@sshserver

More info about ClientAliveInterval and ServerAliveInterval can be found typing at the command line:

$ man 5 sshd_config
$ man 5 ssh_config
$ man ssh

Another reference  here

Your pipes should be safe now, and the plumbers out of business.

ssh 链接服务器出现 Write failed: Broken pipe

标签:

原文地址:http://www.cnblogs.com/tooyoungtoosimple/p/5149795.html

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