server端侦听在10051端口,客户端侦听在10050端口。用户界面使用php开发。数据存储在MySQL里面。安装几次都要重新看,目前将Zabbix配置安装进行整理如下

Zabbix配置需要web、php、mysql、gcc等支持

参考资料:https://www.zabbix.com/documentation/doku.php?id=2.0/manual/installation/install

Zabbix Server安装


创建Zabbix运行的用户:

  • # groupadd zabbix
    # useradd -g zabbix zabbix

  • 安装libcurl和net-snmp:

  • # yum install net-snmp-devel curl-devel
    


    安装Fping:

  • # wget -c http://fping.org/dist/fping-3.4.tar.gz
    # tar zxvf fping-3.4.tar.gz
    # cd fping-3.4
    # ./configure
    # make && make install
    # chown root:zabbix /usr/local/sbin/fping
    # chmod 4710 /usr/local/sbin/fping 
    


    安装Zabbix Server:


    # wget -c http://downloads.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/2.0.6/zabbix-2.0.6.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fzabbix%2F%3Fsource%3Ddlp&ts=1367916060&use_mirror=ncu
    # tar zxvf zabbix-2.0.6.tar.gz
    # cd zabbix-2.0.6
    # ./configure --prefix=/usr/local/zabbix --enable-server --enable-agent --with-mysql=/usr/local/mysql/bin/mysql_config --with-net-snmp --with-libcurl
    #make install

    添加服务端口
    [root@localhost ~]# cat >>/etc/services <<EOF
    zabbix-agent 10050/tcp Zabbix Agent
    zabbix-agent 10050/udp Zabbix Agent
    zabbix-trapper 10051/tcp Zabbix Trapper
    zabbix-trapper 10051/udp Zabbix Trapper



Zabbix Server配置与启动

创建Zabbix数据库和MySQL用户:

mysql> create database zabbix;

Query OK, 1 row affected (0.05 sec)

mysql> grant all on zabbix.* to zabbix@localhost  identified by 'redhat';
Query OK, 0 rows affected (0.03 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.04 sec)


导入Zabbix初始数据:

# cd database/mysql/
# mysql -uroot -p
sql> set sql_log_bin=0;mysql> source ./schema.sql;
mysql> source ./p_w_picpaths.sql;
mysql> source ./data.sql;

编辑/usr/local/zabbix/etc/zabbix_server.conf:

LogFile=/usr/local/zabbix/logs/zabbix_server.log
PidFile=/usr/local/zabbix/logs/zabbix_server.pid
DBHost=192.168.1.190
DBName=zabbix
DBUser=zabbix
DBPassword=redhat
DBPort=3306
FpingLocation=/usr/local/sbin/fping


调整防火墙规则(开放端口10051):


# vi /etc/sysconfig/iptables
...                                                                                                           
-A INPUT -p tcp -m state --state NEW -m tcp --dport 10051 -j ACCEPT
...
# /etc/init.d/iptables restart


启动Zabbix Server:

cd /usr/local/zabbix/sbin

./zabbix_server

停止Zabbix Server:


Zabbix的Web前端


在安装目录将frontends拷贝到指定的web root:

# mkdir  /var/www/html/zabbix

# cd zabbix-2.0.6


# cp -a frontends/php/* /var/www/html/zabbix


遇到的问题:

在 zabbix-2.0.8/misc/init.d 目录下面没有红帽目录(红帽系统的启动脚本)

只要这几个目录文件:aix debian fedora freebsd gentoo README suse tru64 ubuntu


浏览器访问: http://10.0.2.200/zabbix/index.php


如果图形中显示failed,则需要修改php的配置文件/etc/php.ini,分别改成需要的值。

如果是需要php的某个扩展,则需安装 “php-扩展名”这个软件包。


遇到的问题1:

当使用rpm 包安装lamp 架构时,为了使php支持mysql,需要安装php-mysql 软件包就可以了,使php支持gd,gd PNG,gd JPEG,gd FreeType ,需要安装ImageMagick 软件包 就可以了,当时这个就卡了我好长时间哦,为了使php支持php xmlwriter和php xmlreader ,需要安装 php-xml软件就可以了。



数据库配置页:

1:Database type :mysql
2:Database host : localhost
3: Database port : 0(以默认为主)
4:Databasename : zabbix
5: User: zabbix(当时添加时zabbix用户名)mysql -e "grant all privileges on zabbix.* to zabbix@localhost identified by 'redhat';"
6:Password : redhat
点击test connection


最后一页的权限问题:

cd /var/www/html/zabbix/conf

cp zabbix.conf.php.example zabbix.conf.php

chmod 666 zabbix.conf.php

然后刷新 就ok了。

接着就是 zabbix的web登录页面


注:PHP需要至少开启扩展:gd,bcmath,ctype,libXML,xmlreader,xmlwriter,session,sockets,mbstring,gettext,mysql


访问Web界面http://zabbix.zrwm.com,进行相关web配置,配置完成后使用默认用户Admin或admin(密码:zabbix)登陆即可,如下所示。

简单安装 分布式监控系统 Zabbix 2.0.6_安装部署分布式监控系统Zabbix 2.