Posts Tagged ‘understanding about child process in httpd’

Apache performace tunning

Monday, November 16th, 2009

Ref: http://httpd.apache.org/docs/2.2/mod/prefork.html
Ref:http://www.devside.net/articles/apache-performance-tuning
Ref:http://en.wikipedia.org/wiki/Slowloris
Sample Configuration for prefork setting
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
</IfModule>
StartServers :
The StartServers directive sets the number of child [...]