Zabbix客户端安装
1.下载安装包
官网下载:http://www.zabbix.com/download.php
2.安装 ps:如果系统最小安装,需要gcc和make
[[email protected] media]# tar zxvf zabbix-3.0.0beta1.tar.gz
[[email protected] media]# cd zabbix-3.0.0beta1
[[email protected] zabbix-3.0.0beta1]# ./configure --prefix=/usr/local/zabbix/ --enable-agent
[[email protected] zabbix-3.0.0beta1]# make install
3.配置zabbix_server 配置文件,zabbix 源码目录下
[[email protected] ~]# vim /usr/local/zabbix/etc/zabbix_agentd.conf
91 Server=192.168.20.109 #zabbix服务器地址
132 ServerActive=192.168.20.109 #zabbix服务器地址
143 Hostname=tomcat
4.设置开机启动
[[email protected] ~]# cp /media/zabbix-3.0.0beta1/misc/init.d/fedora/core5/zabbix_agentd /etc/init.d/ #复制启脚本
[[email protected] ~]# vi /etc/init.d/zabbix_agentd
21 ZABBIX_BIN="/usr/local/zabbix/sbin/zabbix_agentd" #修改自己安装的路径
[[email protected] ~]# chkconfig --add /etc/init.d/zabbix_agentd #添加为系统服务(就可以使用service启动)
[[email protected] ~]# chkconfig zabbix_agentd on #开机启动