这里使用的zabbix是在lamp环境下安装的,我是使用手动编译安装的
安装 Zabbix
版本:zabbix-1.8.7.tar
下面开始安装:
一解压缩,安装
1#tar zxf zabbix-1.8.tar.gz
#cd zabbix-1.8
2创建 zabbix 用户组和用户:
groupadd zabbix
useradd zabbix -g zabbix
3创建 mysql 数据库:
mysql>create database zabbix character set utf8;
4创建 mysql 用户:
grant all on zabbix.* to zabbix@localhost identified by '123456';
5导入表和数据:
#mysql -uroot -p zabbix < create/schema/mysql.sql
 #mysql -uroot -p zabbix < create/data/data.sql
 #mysql -uroot -p zabbix < create/data/p_w_picpaths_mysql.sql
 
6配置编译:
./configure --prefix=/usr/local/zabbix --enable-server --enable-proxy --enable-agent --with-mysql=/usr/local/mysql/bin/mysql_config --with-net-snmp --with-libcurl
 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 监控
7 服务端口定义:(可以根据自己需求写的)
 编辑 vim /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
8复制配置文件:
mkdir /etc/zabbix
cp misc/conf/zabbix_server.conf /etc/zabbix/
cp misc/conf/zabbix_agentd.conf /etc/zabbix/
9 修改 zabbix server 配置文件 /etc/zabbix/zabbix_server.conf 中的数据库用户名和密码:
DBUser=zabbix
DBPassword=123456
10安装启动脚本,添加可执行权限:
cp misc/init.d/redhat/zabbix-server /etc/init.d/
cp misc/init.d/redhat/zabbix-agentd /etc/init.d/
chmod +x /etc/init.d/zabbix-server
chmod +x /etc/init.d/zabbix-agentd
 
11 启动 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 >> /etc/ld.so.conf
 ldconfig
12 启动 Zabbix Agentd
 
/etc/init.d/zabbix-agentd start
 
13 复制 Web Interface web 目录:
 
cp -r frontends/php /var/www/html/zabbix
我这里做的是虚拟主机:
<VirtualHost *:80>
        DocumentRoot   "/var/www/html/zabbix"
        ServerName zbx.test.com
        ServerAdmin webmaster@zabbix.com
        DirectoryIndex index.php index.html index.htm index.shtml index.htm
#       ErrorDocument 404  /index.php
        ErrorDocument 404  /err.html
        <Directory "/var/www/html/zabbix">
                Options Includes FollowSymLinks
                AllowOverride all
                Allow from all
                Order allow,deny
        </Directory>
        <IfModule mod_expires.c>
                ExpiresActive On
#                ExpiresDefault                  "access plus 1 days"
                ExpiresByType p_w_picpath/gif         "access plus 1 days"
                ExpiresByType p_w_picpath/jpeg        "access plus 365 days"
                ExpiresByType text/css        "access plus 7 days"
        </IfModule>
        LogLevel info
        CustomLog "| /usr/local/sbin/cronolog /var/log/httpd/access-%Y%m%d-zabbix-120.log" combined
</VirtualHost>
14 开始安装 Zabbix Web Interface
 打开 http://zbx.test.com/,看到提示:
监测环境时提示:
需要做修改 php.ini
post_max_size = 16M
max_execution_time = 300
mbstring.func_overload = 2
date.timezone = Asia/Shanghai
max_input_time = 300
 
解决后按提示继续安装即可。
15结束:
 安装完后直接访问:
http://zbx.test.com
默认用户名和密码是:
 Admin/zabbix
 到此安装完成!