1

アプリケーションの乗客ログにエラーがあります。

[error]Premature end of script headers: 
[ pid=xxxxx thr=x file=ext/apache2/Hooks.cpp:xxx time=2012-10-06 07:45:05.816 ]: The backend application (process 29746) did not send a valid HTTP response; 
instead, it sent nothing at all.
It is possible that it has crashed; 
please check whether there are crashing bugs in this application.

インターネットで検索したところ、乗客プールのアイドル時間を設定することでこの問題を解決できることがわかりました。

誰かがそれを設定する方法を提案できますか?

前もって感謝します

4

1 に答える 1

2

Apache httpd.conf ファイルで、「LoadModule Passenger_module」の後に次の行を追加します。

PassengerPoolIdleTime 300

「300」を、メモリを節約するためにシャットダウンする前にアプリケーション プロセスをアイドル状態にできる秒数に変更します。

于 2012-10-09T18:02:30.437 に答える