4 April 2011

APACHE - Basic performance tuning

If you are running into frequent Apache crashes you can check the error_log for MaxClients-related problems.

To check your error logs to see if you have MaxClient issues you can run the following command as root: 


# grep -i maxclient /var/log/httpd/error_log*

If this command returns any results after making the above changes you may need to fine-tune the MaxClients variables further.

The official documentation on these settings and many others can be found here:
 
http://httpd.apache.org/docs-2.0/mod/mpm_common.html

No comments:

APACHE - failed to start

[On] Red Hat Enterprise Linux Server release 7.4 (Maipo) Apache was not running and attempt to start the httpd service failed. The natural t...