> From: Marc G. Fournier [mailto:[EMAIL PROTECTED]] > > > Okay, but this is the scenario that I do want (one worker, many threads) > ... so I setup my httpd.conf as: > > <IfModule worker.c> > StartServers 1 > MaxClients 150 > MinSpareThreads 25 > MaxSpareThreads 75 > ThreadsPerChild 25 > MaxRequestsPerChild 0 > </IfModule> > > But as soon as I start up, it starts 3 servers (I would expect 2 ... one > root, one nobody): > > atelier# ps aux | grep http > root 59418 0.0 0.1 1416 1052 ph RV+ 1:41PM 0:00.00 grep http > (csh) > root 59405 0.0 0.4 5316 3708 ?? Ss 1:39PM 0:00.03 > /usr/local/sbin/httpd > www 59406 0.0 0.3 5096 3480 ?? I 1:39PM 0:00.00 > /usr/local/sbin/httpd > www 59409 0.0 0.4 7420 4000 ?? I 1:39PM 0:00.00 > /usr/local/sbin/httpd > > With the second one be a good 50% larger then the other two ... > > So, am I mis-understanding below, *or*, mis-understanding the conf file > ...
Did you configure cgi? If so, one of those two processes owned by "www" is the CGId process. Ryan
