Centos8安装zabbix-agent-3.4.15-1.el7.x86_64.rpm

zabbix官方是没提供zbbix-agent3.4 for Centos8/RHEL8。由于公司的zabbix server还是3.4版本,不支持更高版本的zabbix-agent,

经测试发现Centos8是可以安装使用zabbix-agent3.4的。

[root@localhost ~]# cat /etc/redhat-release
CentOS Linux release 8.0.1905 (Core)

 安装agent

wget http://192.168.239.241/zabbix/3.4/rhel/7/x86_64/zabbix-agent-3.4.15-1.el7.x86_64.rpm
yum localinstall zabbix-agent-3.4.15-1.el7.x86_64.rpm -y
sed -i "s/127.0.0.1/192.168.239.241/g" /etc/zabbix/zabbix_agentd.conf
systemctl restart zabbix-agent.service

测试

[root@gt-zabbix ~]# zabbix_get -s 192.168.239.1 -k system.cpu.load[all,avg1]
0.020000

 

你可能感兴趣的:(centos8/rhel8,zabbix运维)