# 安装zabbix agent服务、
rpm -Uvh https://repo.zabbix.com/zabbix/5.4/rhel/7/x86_64/zabbix-release-5.4-1.el7.noarch.rpm
yum clean all
yum install zabbix-agent
# 启动zabbix agent并设置为开机自启
systemctl start zabbix-agent
systemctl enable zabbix-agent
# 查看zabbix agent是否启动
netstat -anlp | grep 10050
# 配置zabbix agent conf文件
vi /etc/zabbix/zabbix_agentd.conf
Server=192.168.5.133 #被动模式,指定zabbix-server服务端的ip地址,多个ip的话使用逗号分隔
ServerActive=192.168.5.133 #主动模式,指定zabbix-server的ip地址,使用逗号分隔多IP,如果注释这个选项,那么当前服务器的主动监控就被禁用了
Hostname=docker-server #当使用主动模式时,这个名称的设置必须与zabbix-web监控页面创建的主机名称保持一致
# 修改完后重启zabbix agent使服务生效
systemctl restart zabbix-agent
Zabbix WEB 配置 (注意关闭防火墙)