大きな変更時の Git SSH プッシュのタイムアウト
症状
Git プッシュエラー:
'receive-pack' timed out on server.fatal: The remote end hung up unexpectedly
error: pack-objects died of signal 13
error: failed to push some refs to 'ssh://git@xxx'
原因
大きな変更をプッシュすると、デフォルトのタイムアウトよりも時間を要します。
ソリューション
- Increase timeout from Stash server
STASH_HOME/stash-config.properties
ファイルを作成します (まだ存在しない場合)次のプロパティを追加します
######################################################################################################################## # SSH command execution ######################################################################################################################## # Controls timeouts for all SSH commands, such as those that service git and hg operations over SSH. The idle timeout # configures how long the command is allowed to run without writing any output to the client. For SCM commands, the # plugin.*.backend.timeout.idle properties defined above will be applied to the underlying process. The default value # is 1 day. # This values is in SECONDS. plugin.ssh.command.timeout.idle=86400 ######################################################################################################################## # Git Settings ######################################################################################################################## # Defines the idle timeout for push/pull processes, applying a limit to how long the operation is allowed to execute # without either producing output or consuming input. The default value is 30 minutes. # This value is in SECONDS. plugin.stash-scm-git.backend.timeout.idle=1800 # Defines the execution timeout for push/pull processes, applying a hard limit to how long the operation is allowed to # run even if it is producing output or reading input. The default value is 1 day. # This value is in SECONDS. plugin.stash-scm-git.backend.timeout.execution=86400
- Restart Stash
- ユーザー マシンのタイムアウト値を引き上げます
~/.ssh/config
ファイルを作成します (まだ存在しない場合)SSH ServerAliveInterval ServerAliveCountMax 設定をファイルに追加します。例:
Host * ServerAliveInterval 86400 ServerAliveCountMax 4
Last modified on Mar 30, 2016
Powered by Confluence and Scroll Viewport.