| Michel Jouvin 2005-11-24, 2:45 am |
| I don't know If really need to write a script, this is so simple.
asa/root % ps -e -opid,ppid,cmd | grep http
1560138 1048577 /www/Web/servers/apache/2.0.54/bin/httpd -k start
1560163 1560138 /www/Web/servers/apache/2.0.54/bin/httpd -k start
1086396 1086105 grep http
>From this output, you see that 1560163 is the child. Kill it with :
kill -KILL 1560163
If you enter again 'ps -e|grep http', you'll see (I am seeing...) the
number of httpd processes increasing until the max number (determined by
MaxClient and ThreadPerChild). When this max number is reached you get the
error message in main Apache error log.
Michel
--On mercredi 23 novembre 2005 19:30 -0500 Jim Gallacher
<jpg@jgassociates.ca> wrote:
> Michel Jouvin wrote:
>
>
> Michel,
>
> I'm not able to reproduce the behaviour on debian stable (i386) with
> apache 2.0.54, but I'm not sure if I'm testing this correctly.
>
> Could you create a test script (bash or python) that will produce the
> error? That way I can know for sure that I'm testing in the same way.
>
> Jim
>
****************************************
*********************
* Michel Jouvin Email : jouvin@lal.in2p3.fr *
* LAL / CNRS Tel : +33 1 64468932 *
* B.P. 34 Fax : +33 1 69079404 *
* 91898 Orsay Cedex *
* France *
****************************************
*********************
|