On 6/29/05 11:40 AM, "Paul A Houle" <[EMAIL PROTECTED]> wrote:


> [Tue Jun 28 14:45:53 2005] [notice] child pid 28182 exit signal
> Segmentation fault (11)

Sorry if I missed it, which mpm are you using?

Basically before you start apache do:
ulimit -c unlimited

Set CoreDumpDirectory to so directory writable by the web server user (not
root).

Start apache.

You should get a core file. Use GDB to look at it:  assuming the core is in
tmp.

gdb --core=/tmp/core.<pid> /path/to/httpd


If you are using a threaded mpm, then use the following gdb command to track
down the offending thread:

thread apply all bt

Then switch to that thread:

thread <id>




-- 
Brian Akins
Lead Systems Engineer
CNN Internet Technologies


Reply via email to