Install Zabbix Agent on CentOS 7 for Zabbix Monitoring

|
Last Updated:
|
|

Learn how to install Zabbix Agent on CentOS 7 for Zabbix monitoring. In our previous guides, we covered the installation of Zabbix Server on Debian 10 Buster. This guide will focus on monitoring remote Linux hosts using Zabbix, specifically CentOS 7 host and the related RHEL hosts.

Before you can continue, ensure that your Zabbix server is up and running. See the links below on how to install and configure Zabbix server on Debian 10 Buster.

Install Zabbix 4.x from Sources on Debian 10 Buster

Install Zabbix Server from APT on Debian 10 Buster

Installing Zabbix Agent on CentOS 7

In order to monitor Linux hosts with Zabbix, you need to install Zabbix agents on them. In this guide, we are use CentOS 7 as our hosts to monitor with Zabbix.

Install Zabbix Agent

Update and upgrade your system packages.

yum update
yum upgrade

Install Zabbix Repository

yum install https://repo.zabbix.com/zabbix/4.2/rhel/7/x86_64/zabbix-release-4.2-1.el7.noarch.rpm

Install Zabbix Agent on CentOS 7

yum install zabbix-agent

Configure Zabbix Agent

Once the installation is done, proceed to configure Zabbix agent in order for it to communicate with Zabbix server for monitoring.

The default zabbix agent configuration file is /etc/zabbix/zabbix_agentd.conf.

Edit the configuration file and set the Zabbix server IP for both the passive and active checks and Zabbix agent hostname.

vim /etc/zabbix/zabbix_agentd.conf
...
Server=192.168.43.62             ## IP for Zabbix Server
...
ServerActive=192.168.43.62        
...
Hostname=centos7.example.com

If firewalld is running, allow Zabbix ports for passive checks.

firewall-cmd --add-port=10050/tcp --permanent 
firewall-cmd --reload

Running Zabbix Agent

After the configuration, start and enable Zabbix agent to run on system boot.

systemctl start zabbix-agent
systemctl enable zabbix-agent

To check the status;

systemctl status zabbix-agent

● zabbix-agent.service - Zabbix Agent
   Loaded: loaded (/usr/lib/systemd/system/zabbix-agent.service; enabled; vendor preset: disabled)
   Active: active (running) since Sat 2019-08-10 09:23:31 EAT; 36s ago
 Main PID: 15253 (zabbix_agentd)
   CGroup: /system.slice/zabbix-agent.service
           ├─15253 /usr/sbin/zabbix_agentd -c /etc/zabbix/zabbix_agentd.conf
           ├─15254 /usr/sbin/zabbix_agentd: collector [idle 1 sec]
           ├─15255 /usr/sbin/zabbix_agentd: listener #1 [waiting for connection]
           ├─15256 /usr/sbin/zabbix_agentd: listener #2 [waiting for connection]
           ├─15257 /usr/sbin/zabbix_agentd: listener #3 [waiting for connection]
           └─15258 /usr/sbin/zabbix_agentd: active checks #1 [idle 1 sec]

Add CentOS 7 Host to Zabbix Server

The Zabbix agent is installed and running on CentOS 7 host. Now it is time to add the agent to the server for monitoring. Login to Zabbix server and navigate to Configuration > Hosts > Create host to add your host.

Configure the Host details like the hostname, visible (if you want), Groups (Linux Servers for example), IP address. Other details are optional.

Install Zabbix Agent on CentOS 7 for Zabbix Monitoring

Next, you need to configure host template. Click on Templates > Link new templates. Click select button and choose Template OS Linux. Once selected, click the add button to add the template.

Zabbix agent templates

When templated is added and linked to your host, it should look like;

Adding Zabbix Templates

You can learn more about Zabbix templates on Zabbix Documentation page.

Next, click Add to add the host to Zabbix server. The list of hosts is then displayed.

zabbix host added

CentOS 7 is now added to Zabbix server for monitoring. To check for the data collected from the host, click Monitoring > Latest data. Select the host and click Apply.

Latest host data Zabbix

You can also check the data graphs. Click Monitoring > Graphs > Group (Linux Servers) > Graph (say, CPU Load) > Host (centos7.example.com) > View as (Graph). Select the time range, last 1 hour

Zabbix Graphs

You can also add the graphs to Zabbix Screens. Click on Screens > Edit Screens. Click the plus (+) on wherever you want to add your graph and click change. Screen configuration wizard opens up. Choose the graph to add to your screen, for example, CPU Load.

Zabbix screens settings

You can leave other settings as default and click Add to create the graph. You can add as many resources to your screen as possible.

Zabbix Screens

Related Tutorials;

Install Zabbix Agent on Debian 10 Buster

Install Zabbix Agent on FreeBSD 12

How to Install Nagios Plugins and NRPE agents on CentOS 7/RHEL 7/Fedora 29

How to Install Nagios Plugins From Source RHEL/CentOS/Oracle Linux

Install Elastic Stack 7 on Fedora 30/Fedora 29/CentOS 7

SUPPORT US VIA A VIRTUAL CUP OF COFFEE

We're passionate about sharing our knowledge and experiences with you through our blog. If you appreciate our efforts, consider buying us a virtual coffee. Your support keeps us motivated and enables us to continually improve, ensuring that we can provide you with the best content possible. Thank you for being a coffee-fueled champion of our work!

Photo of author
koromicha
I am the Co-founder of Kifarunix.com, Linux and the whole FOSS enthusiast, Linux System Admin and a Blue Teamer who loves to share technological tips and hacks with others as a way of sharing knowledge as: "In vain have you acquired knowledge if you have not imparted it to others".

Leave a Comment