歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> 關於Linux >> Zabbix 客戶端安裝教程

Zabbix 客戶端安裝教程

日期:2017/3/1 12:21:11   编辑:關於Linux
[root@localhost ~]# yum install -y gcc make
[root@localhost ~]# cd /usr/local/src
[root@localhost ~]# wget http://nchc.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/2.2.10/zabbix-2.2.10.tar.gz

[root@localhost src]# tar zxvf zabbix-2.2.10.tar.gz
[root@localhost zabbix-2.2.10]# ./configure --prefix=/usr/local/zabbix --enable-agent
[root@localhost zabbix-2.2.10]# make install
[root@localhost zabbix-2.2.10]# cp misc/init.d/fedora/core/zabbix_agentd /etc/init.d/
[root@localhost ~]# ln -s /usr/local/zabbix/etc /etc/zabbix
[root@localhost ~]# ln -s /usr/local/zabbix/sbin/zabbix_agentd /usr/local/sbin/

[root@localhost ~]# cp /etc/zabbix/zabbix_agentd.conf /etc/zabbix/zabbix_agentd.conf-$(date +%Y%m%d)
[root@localhost ~]# vi /etc/zabbix/zabbix_agentd.conf
PidFile=/tmp/zabbix_agentd.pid
LogFile=/tmp/zabbix_agentd.log
EnableRemoteCommands=1
Server=192.168.55.132
ServerActive=192.168.55.132
Hostname=Zabbix server
UnsafeUserParameters=1

[root@localhost ~]# /etc/init.d/zabbix_agentd start

Copyright © Linux教程網 All Rights Reserved