[users@httpd] Why so many apache processes?

2005-07-11 Thread Krist van Besien
Hello, On aLinux system I have an Apache, with multi threaded worker, and the following in the conifg: IfModule worker.c StartServers 1 MaxClients 50 MinSpareThreads 5 MaxSpareThreads 50 ThreadsPerChild 5 MaxRequestsPerChild 10 /IfModule Just after having

Re: [users@httpd] Why so many apache processes?

2005-07-11 Thread Jean-Christophe Montigny
Hello, Look back at your config. It says 5 threads minimum, so at elast 6 processes are spawned when apache is started : the main process and 5 childs. Your config says 50 max, so at maximum there would be 50 threads... Normally, there's another config option that states how many threads are

Re: [users@httpd] Why so many apache processes?

2005-07-11 Thread Krist van Besien
On 7/11/05, Jean-Christophe Montigny [EMAIL PROTECTED] wrote: Hello, Look back at your config. It says 5 threads minimum, so at elast 6 processes are spawned when apache is started : the main process and 5 childs. Your config says 50 max, so at maximum there would be 50 threads... Normally,