Apache/2.2.6 (Unix) DAV/2 mod_python/3.2.8 Python/2.4.4 configured ...
apache プロセスの 1 つが、実行時間の長い python スクリプトを非同期的に生成し、その子プロセス テーブル エントリを収集していないようです。その long-run-in-subprocess python スクリプトが終了した後、無効な python プロセスが残されました。
# ps -ef | grep httpd
root 23911 1 0 Oct15 ? 00:00:01 /usr/sbin/httpd
...
qa 23920 23911 0 Oct15 ? 00:00:00 /usr/sbin/httpd
# ps -ef | grep python
...
qa 28449 23920 0 12:38 ? 00:00:00 [python] <defunct>
Apache プロセスがその子を収集する方法は何ですか? mod_python 要求ハンドラー (たとえば PythonCleanupHandler など) を介してジョブを実行することは可能ですか?
ありがとう。