linux安裝zabbix伺服器端文件

技術小胖子發表於2017-11-15

Zabbix 是一個提供 Web 管理介面的開源系統/網路監控伺服器。

官方的文件寫得非常好,許多內容這裡就不介紹了,可以直接看官方文件:
http://www.zabbix.com/documentation/

本文只記錄我的 Zabbix 1.8 的安裝過程。

以下我要在同一臺伺服器上安裝 Zabbix Server、Zabbix Proxy 和 Zabbix Agent。

安裝前先配置好PHP,要求支援 php-gd、php-bcmath、php-xml、php-mysql、php-net-socket、php-mbstring,即 configure 引數中加上 –with-gd –enable-bcmath –enable-xml –with-mysql –enable-sockets –enable-mbstring。

我的配置引數如下:

./configure –prefix=/usr/local/php –with-config-file-path=/usr/local/php/etc –with-mysql=/usr/local/mysql –with-mysqli=/usr/local/mysql/bin/mysql_config –enable-fpm –enable-sockets –enable-pdo –with-pdo-mysql=/usr/local/mysql –with-gd –enable-bcmath –enable-xml –enable-mbstring

下面開始安裝 Zabbix:

* 下載並解壓:

wget http://prdownloads.sourceforge.net/zabbix/zabbix-1.8.tar.gz?download

tar zxf zabbix-1.8.tar.gz

cd zabbix-1.8

* 建立 zabbix 使用者組和使用者:

groupadd zabbix

useradd zabbix -g zabbix

* 建立 mysql 資料庫:

create database zabbix character set utf8;

* 建立 mysql 使用者:

grant all on zabbix.* to zabbix@localhost identified by `zabbix`;

* 匯入表和資料:

mysql -uroot -p zabbix < create/schema/mysql.sql

mysql -uroot -p zabbix < create/data/data.sql

mysql -uroot -p zabbix < create/data/images_mysql.sql

* 配置編譯:

./configure –prefix=/usr/local/zabbix –with-jabber –with-mysql=/usr/local/mysql/bin/mysql_config –with-net-snmp -with-libcurl –enable-server –enable-agent –with-jabber=/usr/local/

make && make install

(

編譯zabbix時候,出現:

configure: error: Jabber library not found

解決:

# wget http://iksemel.googlecode.com/files/iksemel-1.4.tar.gz

# tar zxvf iksemel-1.4.tar.gz

# cd iksemel-1.4

# ./configure //此處可不帶編譯引數

# make && make install

)

配置引數說明:

–enable-server 安裝 Zabbix Server

–enable-proxy 安裝 Zabbix Proxy

–enable-agent 安裝 Zabbix Agent

–with-mysql 使用 mysql 做資料庫伺服器

–with-net-snmp 支援 SNMP

–with-libcurl 支援 curl,用於 web 監控

* 服務埠定義:

編輯 /etc/services,在後面追加:

zabbix-agent 10050/tcp Zabbix Agent

zabbix-agent 10050/udp Zabbix Agent

zabbix-trapper 10051/tcp Zabbix Trapper

zabbix-trapper 10051/udp Zabbix Trapper

* 複製配置檔案:

mkdir /etc/zabbix

cp misc/conf/zabbix_server.conf /etc/zabbix/

cp misc/conf/zabbix_proxy.conf /etc/zabbix/

cp misc/conf/zabbix_agent.conf /etc/zabbix/

cp misc/conf/zabbix_agentd.conf /etc/zabbix/

* 修改 zabbix server 配置檔案 /etc/zabbix/zabbix_server.conf 中的資料庫使用者名稱和密碼:

DBUser=zabbix

DBPassword=zabbix

* 安裝啟動指令碼

cp misc/init.d/gentoo/zabbix-server /etc/init.d/

cp misc/init.d/gentoo/zabbix-agentd /etc/init.d/

新增可執行許可權:

chmod +x /etc/init.d/zabbix-server

chmod +x /etc/init.d/zabbix-agentd

修改 zabbix-server 頭部變數定義:

NAME=zabbix_server

PATH=/bin:/usr/bin:/sbin:/usr/sbin

DAEMON=/usr/local/sbin/${NAME}

DESC=”Zabbix 1.4″

PID=/var/run/$NAME.pid

修改 zabbix-agentd 頭部變數定義:

NAME=zabbix_agentd

PATH=/bin:/usr/bin:/sbin:/usr/sbin

DAEMON=/usr/local/sbin/${NAME}

DESC=”Zabbix 1.4″

PID=/var/run/$NAME.pid

* 新增到啟動服務:

rc-update add zabbix-server default

rc-update add zabbix-agentd default

* 啟動 Zabbix Server:

/etc/init.d/zabbix-server start

我啟動時提示錯誤:

zabbix_server: error while loading shared libraries: libmysqlclient.so.16: cannot open shared object file: No such file or directory

因為我的 mysql client 庫不在系統預設庫中,做以下修改後重新啟動就可以了:

echo /usr/local/mysql/lib/mysql/ >> /etc/ld.so.conf

ldconfig

* 啟動 Zabbix Agentd

/etc/init.d/zabbix-agentd start

* 複製 Web Interface 到 web 目錄:

cp -r frontends/php /work/www/zabbix

* 新建 nginx 配置:

server {

listen 80;

server_name zabbix.local zabbix.hily;

access_log /work/www/logs/zabbix.local.access.log main;

location / {

root /work/www/zabbix;

index index.html index.htm index.php;

}

location ~ .php$ {

root /work/www/zabbix;

fastcgi_index index.php;

include fastcgi_params;

}

}

* 開始安裝 Zabbix Web Interface

開啟 http://zabbix.local/,看到提示:

Timezone for PHP is not set. Please set “date.timezone” option in php.ini.

按照提示,修改 php.ini 中時區設定:

date.timezone = Asia/Shanghai

重啟 PHP-FPM:

/etc/init.d/php-fpm restart



再次修改 php.ini:

post_max_size = 16M

max_execution_time = 300

mbstring.func_overload = 2

解決後按提示繼續安裝即可。

* 結束:

安裝完後直接訪問:

http://zabbix.local/

預設使用者名稱和密碼是:

Admin/zabbix

到此安裝完成!

 本文轉自 lover007 51CTO部落格,原文連結:http://blog.51cto.com/wangwei007/741093,如需轉載請自行聯絡原作者


相關文章