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:log
ode_moduleshexo-utillibspawn.js:37:17)
      at emitTwo (events.js:126:13)
      at ChildProcess.emit (events.js:214:7)
      at ChildProcess.cp.emit (D:2017log
ode_modulescross-spawnlibenoent.js:40:29)
      at maybeClose (internal/child_process.js:925:16)
      at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5)

解决

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

  解决方法:

  使用以下的命令:$ ssh -o ServerAliveInterval=60 user@sshserver

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

原文地址:https://www.cnblogs.com/wumz/p/9721666.html