@H_403_1@
linux 服务器客户端的安装
由 于 zabbix_server 这台机器我们已经安装好了 zabbix_agentd,所以无需再次安装了。 那么其他需要监控的 linux 机器是如何安装的呢 在安装客户端的时候,软件包和服务器是同一个,只是 configure 的配置参数不同而已。 当然,源码安装,什么 GCC,make 这些命令都得安装,所以客户端不建议源码安装,由于 针对大量机器(成千上万,在互联网公司很常见),推荐 rpm 包安装,下面展示的是用源码安装
下载 zabbix 安装包@H_403_1@
wget"http://downloads.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/2.2.2/zabbix-2.2.2.tar.gz?r=http%3A%2F%2Fwww.zabbix.com%2Fdownload.PHP&ts=1395066528&use_mirror=jaist" useradd-gzabbix-u201-mzabbix groupaddzabbix-g201 tar-zxvfzabbix-2.0.8.tar.gz cdzabbix-2.0.8 ./configure--prefix=/usr--sysconfdir=/etc/zabbix--enable-agent make makeinstall
@H_403_1@
拷贝 Agent 启动脚本
mkdir/var/log/zabbix chownzabbix.zabbix/var/log/zabbix cpmisc/init.d/fedora/core/zabbix_agentd/etc/init.d/ chmod755/etc/init.d/zabbix_agentd sed-i"s#BASEDIR=/usr/local#BASEDIR=/usr/#g"/etc/init.d/zabbix_agentd
#vim/etc/services zabbix-agent10050/tcp#ZabbixAgent zabbix-agent10050/udp#ZabbixAgent zabbix-trapper10051/tcp#ZabbixTrapper
sed-i"s/Server\=127.0.0.1/Server\=127.0.0.1,192.168.30.130/g"/etc/zabbix/zabbix_agentd.conf sed-i"s/ServerActive\=127.0.0.1/ServerActive\=192.168.30.130:10051/g"/etc/zabbix/zabbix_agentd.conf sed-i"s#tmp/zabbix_agentd.log#var/log/zabbix/zabbix_agentd.log#g"/etc/zabbix/zabbix_agentd.conf sed-i"#UnsafeUserParameters=0#aUnsafeUserParameters=1\n"/etc/zabbix/zabbix_agentd.conf