标签:监控
被监控端的安装与配置:
tar zxf zabbix-2.4.1.tar.gz
cd zabbix-2.4.1
./configure --prefix=/usr/local/zabbix --enable-agent &&make &&make install
###########################################################################################
cd /usr/local/zabbix/etc/
vim zabbix_agentd.conf
LogFile=/tmp/zabbix_agentd.log
Server=10.10.41.12 [监控服务器的ip]
ServerActive=10.10.41.12[监控服务器的ip]
Hostname=10.10.41.11[本机的ip]
###########################################################################################
cd /opt/zabbix-2.4.1/misc/init.d/fedora/core/
cp zabbix_agentd /etc/init.d/
vim /etc/init.d/zabbix_agentd
BASEDIR=/usr/local/zabbix
service zabbix_agentd start
ps aux |grep zabbix
telnet 127.0.0.1:10050
netstat -na |grep 10050
<未完>
标签:监控
原文地址:http://yanruohan.blog.51cto.com/9740053/1608579