Ryan
Ryan

Reputation: 15270

Is there an Apache tuner script like mysqltuner.pl?

My httpd connections are using too much memory and I'd like to fix it. MySQLTuner.pl is a fantastic little script to do something similar for MySQL. Is there something like this available for Apache?

Upvotes: 6

Views: 14860

Answers (3)

naitan
naitan

Reputation: 1155

could be helpful.

Upvotes: 11

auhsor
auhsor

Reputation: 101

Both apachetuner.sh and apachebuddy.pl are now out of date.

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

Upvotes: 4

trante
trante

Reputation: 34006

By naitan's answer I checked for apache tuner and apache buddy which were written by same person. They don't seem help too much. Very limited when compared to mysqltuner or mysql primer's capabilites. You can use them like this:

# 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

Upvotes: 2

Related Questions