I have 2.2.11 running on Solaris 10 and 8 servers. I notice sometimes up to 70 httpd processes. How can I stop so many processes?
My conf settings are
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 7
<IfModule prefork.c>
StartServers 5
MinSpareServers 20
MaxSpareServers 40
ServerLimit 350
MaxClients 350
MaxRequestsPerChild 0
</IfModule>
I have other sockets that start when apache children start (mysqld and shibboleth sockets) and I believe they will close when the child closes. How can I see if they are closing or how to close them please?
Any help would be required.