Munin the power full monitoring tool monitor all of your servers or computers and remembers what it saw.
It presents all the information in graphs through a web interface and also available on Android.
Munin has plug and play capabilities. After completing a installation a high number of monitoring plugins will be playing with no more effort.
Using Munin, you can easily monitor the performance of your servers, computers, networks, SANs, applications, weather measurements and whatever comes to mind.
It will makes it you easily to determine “what’s different today” when a performance problem found.
Munin uses the excellent RRDTool written by Tobi Oetiker) and the framework is written in Perl, while plugins may be written in any language.
Now you can check http://your_ip_or_your_domain/munin
Munin Nginx Monitoring
Munin Apache Monitoring
Configure Munin to monitor MySQL / MariaDB
Check if perl-Cache-Cache already installed
# yum install perl-Cache-Cache
Create MySQL user for Munin with mysql command below
mysql> CREATE USER 'munin'@'localhost' IDENTIFIED BY 'password';
mysql> GRANT PROCESS, SUPER ON . TO 'munin'@'localhost';
mysql> GRANT SELECT ON mysql.* TO 'munin'@'localhost';
mysql> CREATE DATABASE IF NOT EXISTS muninmonitor;
mysql> GRANT ALL PRIVILEGES ON munin.* TO 'muninmonitor'@'localhost';
mysql> FLUSH PRIVILEGES;
Create configuration file on /etc/munin/plugin-conf.d/mysql_
One thought on “How to install and configure Munin on Centos”
Nope. Like all the other tutorials that I’ve read. This will not work. yum installs the files in different locations. I wonder if anyone actually tests these instructions before publishing them
Nope. Like all the other tutorials that I’ve read. This will not work. yum installs the files in different locations. I wonder if anyone actually tests these instructions before publishing them