The server hits the MaxClients setting and then just hangs until manually restarted. I have a 512MB ram VPS and i've set the MaxClients setting to 10. The child processes that apache spawns are not killed eventhough no connection to the server appears in netstat.
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
Use server status to see what the processes are doing: |
|||
|
|
Even If you have no connection, apache will start some child to be able to quick answer to request (creating child process have a cost). You can parameter this with MinSpareServers, MaxSpareServers, and StartServers. With 512MB, you can specify more than 10 MaxChild. |
|||
|
|