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.

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.

Copy to Clipboard

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.

Copy to Clipboard

Extract the Zabbix installation package, compile and install the Zabbix agent.

Copy to Clipboard

Copy the Startup scripts included on the Zabbix package.

Copy to Clipboard

Find the location of the zabbix_agentd.conf configuration file on your system.

Copy to Clipboard

Here is the original file, before our configuration.

Copy to Clipboard

Here is the new file with our configuration.

Copy to Clipboard

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 to Clipboard

Copy the file named userparameter_mysql.conf from the Zabbix installation package to the zabbix_agentd.conf.d directory.

Copy to Clipboard

Create the required Zabbix agent MySQL credentials file.

The Zabbix agent will use this information to connect the MySQL server.

Copy to Clipboard

Here is our configuration.

Copy to Clipboard

In our example, the Zabbix agent will monitor the MySQL service installed on the localhost.

Restart the Zabbix Agent.

Copy to Clipboard

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

zabbix login

After a successful login, you will be sent to the Zabbix Dashboard.

zabbix dashboard

On the dashboard screen, access the Configuration menu and select the Host option.

zabbix add host

On the top right of the screen, click on the Create host button.

Zabbix Create Host

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.

zabbix linux - Antes

Here is the new image with our configuration.

Zabbix MySQL Host

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

Zabbix 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.

Zabbix Graphs Menu

On the top right of the screen, select the group named ALL.

Select your MySQL computer hostname.

Select the graph named: MySQL Operations.

Zabbix MySQL Graph

You should be able to see the graphic of CPU utilization.

Zabbix MySQL Graph Example

Congratulations! You have configured the Zabbix server to monitor MySQL.