ownCloudでファイル送信に失敗することがあるので調べてみた。
ownCloudでServer replied with an error while reading directory
ownCloudでのエラーは次の通りです。
Server replied with an error while reading directory xxxx Unknown error
Apacheサーバーのエラー
一方、Apacheのエラーは次の通りです。
1 2 3 4 |
[Tue Sep 14 ] [proxy_fcgi:error] [pid xxx:tid xxx] (70007)The timeout specified has expired: [client xxxx] AH01075: Error dispatching request to : (polling) [Tue Sep 14 ] [proxy_fcgi:error] [pid xxx:tid xxx] (70007)The timeout specified has expired: [client xxxx] AH01075: Error dispatching request to : (polling) [Tue Sep 14 ] [proxy_fcgi:error] [pid xxx:tid xxx] (70007)The timeout specified has expired: [client xxxx] AH01075: Error dispatching request to : (polling) [Tue Sep 14 ] [proxy_fcgi:error] [pid xxx:tid xxx] (70007)The timeout specified has expired: [client xxxx] AH01075: Error dispatching request to : (polling) |
proxy_fcgiがタイムアウトしている模様。
Apacheでタイムアウト対策
対策がよく分からないので、このあたりの対策を参考にしてみる。
・https://www.webdevqa.jp.net/ja/php/apache-proxfyfcgiリクエストのディスパッチエラー/1057096799/
Apacheで関連しそうな以下の値をhttpd.confに設定して様子を見てみる。
1 2 3 4 |
RequestReadTimeout header=20-600,MinRate=500 body=20,MinRate=500 Timeout 600 ProxyTimeout 600 |
コメント