How to install Zabbix agent in CentOS8

preview_player
Показать описание
This video of how to install.
This time how to install Zabbix Agent.
I hope it's a useful reference.

この動画はインストール方法を紹介する動画になります。
今回の動画はZabbix Agentをインストール方法になります。
ためになると嬉しいです。

The commands Iactually used are also uploaded to Github.

# Update General package
dnf -y update

# Stop SELinux
vi /etc/selinux/config
SELINUX=disabled

# reboot
reboot

# Update Repository

# Installation Zabbix5.0
dnf clean all
dnf -y install zabbix-agent2

# Edit config
Server=192.168.0.10
ServerActive=192.168.0.10
Hostname=TestServer

# Setting Firewall
firewall-cmd --add-port=10050/tcp --zone=public --permanent
firewall-cmd --reload

# Start service
systemctl enable zabbix-agent2
systemctl restart zabbix-agent2
Рекомендации по теме