7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

「Write failed: Broken pipe」によりsshが切断される場合の対処法

Posted at

#問題

クライアントからサーバにsshで接続しているとある時間が経過した後に切断されてしまう。

#解決方法
###クライアント側で対処
まず、クライアント側で対処するには/etc/ssh/ssh_configまたは~/.ssh/configに以下の内容を記述します。

$ vim ~/.ssh/config

ServerAliveInterval 15
ServerAliveCountMax 10

###サーバ側で対処
次にサーバ側で対応する方法ですが、/etc/ssh/sshd_configに

$ vi /etc/ssh/sshd_config

ClientAliveInterval 30
ClientAliveCountMax 5

と記述すると、30秒ごとにクライアントに5回応答確認をクライアントに送り、それでも応答がなければタイムアウトになります。

サーバ側のsshd_configを編集した場合は反映をさせるためにsshd再起動をする。(必要かどうかは要確認)

# service sshd restart

参考

7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?