作者:lf8762 | 来源:互联网 | 2023-02-02 13:19
1、安装zabbixagent在centos上安装agent,使用如下命令:yuminstallhttp:101.110.118.71repo.zabbix.comzab
1、 安装zabbix agent
在centos上安装agent,使用如下命令:
yum install http://101.110.118.71/repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-agent-3.0.4-1.el7.x86_64.rpm
2、配置zabbix agent
zabbix agent的配置很简单,只需要修改zabbix agent配置文件中的Server、ServerActive和Hostname这三项即可。
其中Server、ServerActive是zabbix server服务器的IP地址,Hostname是被监控端的IP地址,如下:
vim /etc/zabbix/zabbix_agentd.conf
Server=192.168.3.108
ServerActive=192.168.3.108
Hostname=agent_hostname #注意此处需要填写被监控端的hostname,此处Hostname要和添加hosts时的Host name一致,具体如下图
3、客户端agent自启动
chkconfig --add zabbix-agent
启动:/sbin/zabbix_agentd
以上配置完毕后,我们在zabbix web端添加该监控机器时,只需要把honst name与该配置文件中的hostname对应即可。如下: