You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Vincent Janelle <vj...@home.com> on 1999/01/26 19:37:35 UTC

Looking through logs..

I think I found the problem.

First of all, apache is sig11'ing all over the place.  Bad.  

Also, the machine is running out of file discriptors.  Bad linux 2.0.x. =)

Thanks for the help btw guys.  


Re: Looking through logs..

Posted by Dean Gaudet <dg...@arctic.org>.

On Tue, 26 Jan 1999, Vincent Janelle wrote:

> I think I found the problem.
> 
> First of all, apache is sig11'ing all over the place.  Bad.  

If your apache is compiled with debugging symbols you can gdb attach to
one of the children and wait for it to segfault and then type "where" so
we can find out why it's segfaulting. 

gdb httpd pid-of-any-child
c
# wait for segfault
where

Dean