Would you like to learn how to monitor a MySQL server using Zabbix? In this tutorial, we are going to show you how to use Zabbix to monitor a MySQL server.
Zabbix Playlist:
On this page, we offer quick access to a list of videos related to Zabbix installation.
Don’t forget to subscribe to our youtube channel named FKIT.
Zabbix Related Tutorial:
On this page, we offer quick access to a list of tutorials related to Zabbix installation.
Configure a MySQL user to Zabbix
Zabbix requires an account to access the MySQL server and perform the database monitoring.
On the MySQL database server, create an account to Zabbix.
Give usage privilege over all MySQL databases to the Zabbix user.
Take note of the MySQL username and password created.
Install the Zabbix Agent on the MySQL Server
Now, we need to install the Zabbix agent on the computer running the MySQL service.
On the Linux console, use the following commands to install the required packages.
Extract the Zabbix installation package, compile and install the Zabbix agent.
Copy the Startup scripts included on the Zabbix package.
Find the location of the zabbix_agentd.conf configuration file on your system.
Here is the original file, before our configuration.
Here is the new file with our configuration.
In our example, the Zabbix agent is configured to allow the connection from the Zabbix server 200.200.200.200.
The Zabbix server with the IP address 200.200.200.200 is allowed to request and receive information from this agent.
The Localhost, 127.0.0.1, is allowed to request and receive information from the agent.
Create the directory zabbix_agentd.conf.d.
Copy the file named userparameter_mysql.conf from the Zabbix installation package to the zabbix_agentd.conf.d directory.
Create the required Zabbix agent MySQL credentials file.
The Zabbix agent will use this information to connect the MySQL server.
Here is our configuration.
In our example, the Zabbix agent will monitor the MySQL service installed on the localhost.
Restart the Zabbix Agent.
Zabbix Monitor MySQL
Now, we need to access the Zabbix server dashboard and add the Linux computer running MySQL as a Host.
Open your browser and enter the IP address of your web server plus /zabbix.
In our example, the following URL was entered in the Browser:
• http://200.200.200.200/zabbix
On the login screen, use the default username and default password.
• Default Username: Admin
• Default Password: zabbix
After a successful login, you will be sent to the Zabbix Dashboard.
On the dashboard screen, access the Configuration menu and select the Host option.
On the top right of the screen, click on the Create host button.
Enter the following information:
• Host Name – Enter a Hostname to identify the Linux server running MySQL.
• Visible Hostname – Repeat the hostname.
• Group – Select the name of a group to identify similar devices.
• Agent Interface – Enter the IP address of the Linux server.
Here is the original image, before our configuration.
Here is the new image with our configuration.
Next, we need to associate the host with a specific network monitor template.
By default, Zabbix comes with a large variety of monitoring templates.
Access the Templates tab on the top of the screen.
Click on the Select button and locate the template named: Template DB MySQL
Click on the Add option.
Click on the Add button.
After a few minutes, you will be able to see the initial result on the Zabbix Dashboard.
In order to test your configuration, access the Monitoring menu and click on the Graphs option.
On the top right of the screen, select the group named ALL.
Select your MySQL computer hostname.
Select the graph named: MySQL Operations.
You should be able to see the graphic of CPU utilization.
Congratulations! You have configured the Zabbix server to monitor MySQL.