#官網下載安裝套件:http://www.zabbix .com/download
本文用的是Zabbix 3.0 LTS
上傳到客戶端伺服器並解壓縮
tar xzvf zabbix-3.0.9.tar.gz
進入解壓縮後的資料夾開始編譯安裝
./configure --prefix=/usr/local/zabbix --enable-agent //指定路径make && make install //编译安装
/root/zabbix-./misc/init.d/fedora/core/zabbix_agentd /etc/init.d//etc/init.d/zabbix_agentd
groupadd zabbix //添加zabbix组useradd zabbix -g zabbix //添加zabiix用户service zabbix_agentd start //启动服务
#
vim /usr/local/zabbix/etc/zabbix_agentd.conf
##
Server=127.0.0.1 >> Server="服务端IP“ //如不在统一网段,需要添加多个IP、网关IPServerActive=127.0.0.1 >> ServerActive="服务端IP”Hostname=Zabbix server >> Hostname="本机IP”
#用戶端開啟連接埠10050
/sbin/iptables -I INPUT -p tcp --dport -/sbin/iptables -I INPUT -p tcp --dport -j ACCEPT /etc/rc.d/init.d/iptables save service zabbix_agentd restart
檢視
狀態
以上是Zabbix-agent客戶端的編譯安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!