zabbix监控windows linux主机 agent的安装方式

监控LINUX主机:

1.安装开发组件包
yum -y groupinstall "Development Tools"

yum –y installntpdate

2、同步客户端时间,防止跟服务器端不一致,导致检测到不可用的监控数据
ntpdate pool.ntp.org

3、创建zabbix运行所需要的用户跟组
groupadd -g 201 zabbix
useradd -g zabbix -g 201 -m zabbix

4、解压安装zabbix agent端
cd/usr/src/
tar zvxf zabbix-2.2.3.tar.gz
cd zabbix-2.2.3
./configure --sysconfdir=/etc/zabbix--enable-agent
make && make install

5、copy agent端运行所需要的脚本

cp misc/init.d/tru64/zabbix_agentd/etc/init.d/
chmod +x /etc/init.d/zabbix_agentd

6、配置agent端配置文件

vim /etc/zabbix/zabbix_agentd.conf    #此处千万别写成了zabbix_agent.conf,否则配置了不生效

Server=192.168.239.130 #填写Server的IP地址

ServerActive=192.168.239.130  #修改为Server的IP地址

Hostname=Centos-03   #填写本机的HostName,注意Server端要能解析

UnsafeUserParameters=1  #是否允许自定义的key,1为允许,0为不允许

Include= etc/zabbix/zabbix_agentd.conf.d/ #自定义的agentd配置文件(key)可以在这里面写;

7、启动zabbix agent端
/etc/init.d/zabbix_agentd start

 

本文出自 “月光疾风” 博客,请务必保留此出处http://skykws8023.blog.51cto.com/4514277/1545504

zabbix监控windows linux主机 agent的安装方式

上一篇:asp.net Login控件基本属性及事件说明


下一篇:JavaScript 数组操作:slice vs splice