环境
系统:CentOS 6.6
软件:zabbix-2.4.6.tar.gz
zabbix agentd安装
下载源码包
地址:http://www.zabbix.com/download.php-
安装依赖包
# yum -y install gcc mysql-devel curl curl-devel net-snmp net-snmp-devel perl-DBI
-
创建zabbix账号
# useradd -s /sbin/nologin zabbix
-
编译安装zabbix agentd
# tar -xzvf zabbix-2.4.6.tar.gz # cd zabbix-2.4.6 # ./configure \ --prefix=/usr/local/zabbix \ --enable-agent # make install
-
配置环境变量
# vim /etc/profile export PATH=/usr/local/zabbix/sbin:/usr/local/zabbix/bin:$PATH
zabbix agentd配置
Server 和 ServerActive 配置为zabbix server的ip
# vim /usr/local/zabbix/etc/zabbix_agentd.conf
Server=192.168.25.51
ServerActive=192.168.25.51
开机启动
-
拷贝开机启动脚本
# cp /App/src/zabbix-2.4.6/misc/init.d/tru64/zabbix_agentd /etc/init.d/ # chmod +x /etc/init.d/zabbix_agentd
-
修改开机启动脚本
# vim /etc/init.d/zabbix_agentd 在文件头部的#!/bin/sh行下添加 #chkconfig: 35 96 96 #description:zabbix agentd 更改sbin路径 DAEMON=/usr/local/zabbix/sbin/zabbix_agentd
-
开机启动
# chkconfig --add zabbix_agentd # chkconfig zabbix_agentd on # service zabbix_agentd restart