1)安装agent端
#配置 yum 库(CentOS/RHEL 7)
# rpm -Uvh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm
# rpm -Uvh http://repo.zabbix.com/zabbix/4.4/rhel/8/x86_64/zabbix-release-4.4-1.el8.noarch.rpm (选一个)
# 安装
# yum -y install zabbix-agent
# 配置 zabbix_agentd
# vim /etc/zabbix/zabbix_agentd.conf
#ListenPort=10050 # 服务器通过代理连接的本地端口(默认)
Server=192.168.10.200 # zabbix 服务器IP(本地环境监控线上,可能要使用到外网IP【建议使用固定外网IP】)
ServerActive=192.168.10.200 # zabbix 服务器IP
Hostname=192.168.10.123 # 当前被监控机的IP
# 启动服务
systemctl start zabbix-agent
2)再zabbix服务端测试【192.168.10.200】
zabbix_get -s 192.168.10.123 -p10050 -k "system.hostname"
zabbix_get -s 192.168.10.123 -p 10050 -k "system.cpu.load"
1)演示以监控本机,所有IP为 【192.168.10.200】
2)保证正常连接,如果有问题到zabbix-agent端,查看: /var/log/zabbix/zabbix_agentd.log 文件日志
出现 18177:20191024:104822.451 failed to accept an incoming connection: connection from "172.17.0.5" rejected, allowed hosts: "192.168.10.200"类似错误,就是 zabbix_agentd.conf 中 ServerActive 和 Server 配置问题
3) 查看监控