Hi,
I have configured apache to run using the worker MPM. I am trying to restrict the number of child processes it spawns to one. Here is the relevant section from httpd.conf
<IfModule mpm_worker_module>
StartServers 1
MaxClients 150
ThreadsPerChild 150
MinSpareThreads 1
MaxSpareThreads 150
</IfModule>
Howerver, when I restart apache, I see 3 httpd instances( 1 parent , 2 child ). Is there anything wrong with the above config ?
Thanks in advance
I have configured apache to run using the worker MPM. I am trying to restrict the number of child processes it spawns to one. Here is the relevant section from httpd.conf
<IfModule mpm_worker_module>
StartServers 1
MaxClients 150
ThreadsPerChild 150
MinSpareThreads 1
MaxSpareThreads 150
</IfModule>
Howerver, when I restart apache, I see 3 httpd instances( 1 parent , 2 child ). Is there anything wrong with the above config ?
Thanks in advance