Is there an Apache script tuner like mysqltuner.pl?

My httpd connections use too much memory, and I would like to fix it. MySQLTuner.pl is a fantastic little script to do something similar for MySQL. Is there something similar for Apache?

+5
source share
3 answers

Will will help you.

+12
source

According to the naive answer, I checked for the apache tuner and apache buddy, which were written by the same person. They do not help much. Very limited compared to mysqltuner or mysql primer capabilites. You can use them as follows:

# cd /opt
# wget https://raw.github.com/gusmaskowitz/apachebuddy.pl/master/apachebuddy.pl
# chmod +x apachebuddy.pl
# wget https://raw.github.com/gusmaskowitz/apachetuner/master/apachetuner.sh
# chmod +x apachetuner.sh

# /opt/apachebuddy.pl
# /opt/apachetuner.sh
+2

apachetuner.sh apachebuddy.pl .

The most recent version of this file is apache2buddy.pl ( https://github.com/richardforth/apache2buddy ).

0
source

All Articles