ssh 登录报错 packet_write_wait: Connection to x.x.x.x port 22: Broken pipe

问题

更新个人博客文章时遇到:Error: packet_write_wait: Connection to 192.30.253.113 port 22: Broken pipe

  packet_write_wait: Connection to 192.30.253.113 port 22: Broken pipe
  fatal: sha1 file '<stdout>' write error: Broken pipe
  fatal: The remote end hung up unexpectedly
  fatal: The remote end hung up unexpectedly
  FATAL Something's wrong. Maybe you can find the solution here: http://hexo.io/docs/troubleshooting.html
  Error: packet_write_wait: Connection to 192.30.253.113 port 22: Broken pipe
  fatal: sha1 file '<stdout>' write error: Broken pipe
  fatal: The remote end hung up unexpectedly
  fatal: The remote end hung up unexpectedly

      at ChildProcess.<anonymous> (D:\blog\node_modules\hexo-util\lib\spawn.js:37:17)
      at emitTwo (events.js:126:13)
      at ChildProcess.emit (events.js:214:7)
      at ChildProcess.cp.emit (D:\2017\blog\node_modules\cross-spawn\lib\enoent.js:40:29)
      at maybeClose (internal/child_process.js:925:16)
      at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5)

解决

  用 ssh 命令连接服务器之后,如果一段时间不操作,再次进入 Terminal 时会有一段时间没有响应,然后就出现错误提示:Write failed: Broken pipe
只能重新用 ssh 命令进行连接。

  解决方法:

  方法一:如果您有多台服务器,不想在每台服务器上设置,只需在客户端的~/.ssh/文件夹中添加 config 文件,并添加下面的配置:ServerAliveInterval 60

  方法二:如果您有多台个人管理服务器,不想在每个客户端进行设置,只需在服务器的/etc/ssh/sshd_config中添加如下的配置:ClientAliveInterval 60

  方法三:如果您只想让当前的 ssh 保持连接,可以使用以下的命令:$ ssh -o ServerAliveInterval=60 user@sshserver

  这里的user是指你的 git 用户名,sshserver 是指报错中的 IP。

猜你喜欢

转载自www.cnblogs.com/wumz/p/9721666.html