源碼安裝zabbix_agent 3.2.3
阿新 • • 發佈:2017-05-24
監控 下載地址 local
一,環境
centos/zabbix3.2.3
1、安裝包選擇
下載地址:http://www.zabbix.com/download.php
這裏有兩種源碼包,一種是安裝 Zabbix Server 的包,可以通過指定參數 --enable-agent 的方式安裝 Agent
一種是安裝 Zabbix Agent 的包,解壓配置即可,並且默認提供了監控 MySQL 性能的模板 Key
2、安裝 ( 我選擇的是第一種方式 )
shell > useradd -r -s /sbin/nologin zabbix shell > cd zabbix-3.2.3 shell > ./configure --prefix=/usr/lnamp/zabbix_agent --enable-agent ; make install
3、配置
shell > cp /usr/lnamp/zabbix-2.4.6/misc/init.d/Fedora/core/zabbix_agentd /etc/init.d/ # 復制啟動腳本 shell > sed -i ‘s#BASEDIR=/usr/local#BASEDIR=/usr/lnamp/zabbix_agent#‘ /etc/init.d/zabbix_agentd # 修改 Agent 安裝路徑 shell > grep -vP ‘^#|^$‘ /usr/lnamp/zabbix_agent/etc/zabbix_agentd.conf # 調整配置文件 LogFile=/tmp/zabbix_agentd.log Server=121.42.111.220 # Zabbix Server IP ( 被動模式,客戶端被動 ) ServerActive=127.0.0.1 # 主動模式,如果使用也填 Zabbix Server IP ,不使用可以註釋掉 Hostname=101.201.142.247 # 本身 IP ,Zabbix Server 添加主機時需要使用,不一定是 IP Include=/usr/lnamp/zabbix_agent/etc/zabbix_agentd.conf.d/*.conf # 加載自定義的監控配置文件 UnsafeUserParameters=1 # 允許自定義 Key
4、啟動
shell > service zabbix_agentd start shell > chkconfig --add zabbix_agentd shell > chkconfig --level 35 zabbix_agentd on shell > iptables -A INPUT -s ‘Zabbix Server IP‘ -p tcp --dport 10050 -j ACCEPT # 由於是客戶端被動模
測試Zabbix客戶端與Zabbix服務端通信是否正常,以下命令在zabbix服務端執行:
zabbix_get -s 192.168.21.252 -p 10050 -k "system.uptime"
本文出自 “hhslinux” 博客,謝絕轉載!
源碼安裝zabbix_agent 3.2.3