Munin won't install on Centos 6

Well, if is working from munin.youdomain.com you may remove /var/www/html/munin or this should be opened by anyone using IP/munin.

Regarding MySQL, do use da_admin pass cause he need high level access for check all, but i suppose that you can create a user with right permission just for mysql stats.

Also, mysql_ dosnt give any information or graph, cause is programmed to be renamed for each use, i do usually this:

cd /etc/munin/plugins/
ln -sf /usr/share/munin/plugins/mysql_ mysql_
for i in `./mysql_ suggest`; \
do ln -sf /usr/share/munin/plugins/mysql_ mysql_$i; done
sed -i 's/graph_category mysql2/graph_category mysql/' /usr/share/munin/plugins/mysql_*

and remove those i dont need:

rm -rf /etc/munin/plugins/mysql_
rm -rf /etc/munin/plugins/mysql_replication
rm -rf /etc/munin/plugins/mysql_innodb*
rm -rf /etc/munin/plugins/mysql_isam_space_*

Hope this help.

Regards
 
You're the best! This worked great, no mysql errors anymore and mysql now showing up in munin.

Thank you!!
 
Back
Top