1、官方下载zabbix-agent.rpm包
zabbix-agent
[root@agent ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm
[root@agent ~]# yum install zabbix-agent -y
[root@agent ~]# systemctl enable zabbix-agent.service
PS:在使用yum安装zabbix-agent时可能会提示无法安装,重新使用yum安装,一致安装至进度条到达100%即可
2、zabbix-agent端配置
[root@agent ~]# vim /etc/zabbix/zabbix_agentd.conf
Server=192.168.1.129 #zabbix server地址
ServerActive=192.168.1.129 #zabbix server地址
Hostname=192.168.1.130 #本机主机名,在zabbix-web端配置主机时需要填写
3、重启agent服务
[root@agent ~]# systemctl restart zabbix-agent.service