首先zabbix系统基于php环境运行,所以前提是系统上有php的运行环境,lnmp或者lamp环境都可以
如果您还不了解linux下的php环境安装,也许下面两篇文章对你有所帮助
lnmp环境安装:http://www.zzvips.com/article/151230.html
lamp环境安装:http://www.zzvips.com/article/108834.html
请确认你的系统中php环境可以正常运行
首先介绍一下zabbix
一、zabbix的特点
数据收集
可用性和性能检查
支持snmp(包括捕获和主动轮训),ipmi,jmx,vmware监控
自定义检查
按照自定义的间隔收集需要的数据
由server/proxy和agents执行
灵活的阀值定义
高度可配置化的告警
实时图表绘制
使用内置图表绘制功能可以将监控项的内容立即绘制成图表
web监控功能
支持自定义图形
丰富的可视化选项
多个监控项组合在一个视图展示
网络拓扑图
基于模板分组检查
安全用户认证
用c语言编写,性能高效
二、zabbix组成
zabbix服务端
zabbix server是所有配置信息、统计信息和操作数据的核心存储器。用于报告系统可用性、系统完成整性和统计信息等。
zabbix数据存储端
配置信息和zabbix收集到的数据都被存储在数据库中,支持mysql,pg,oracle。
zabbix web展示端
提供了基于web的访问界面(采用php语言编写)
zabbix客户端
zabbix agents监控代理 部署在监控目标上,能够主动监控本地资源和应用程序,并将收集到的数据报告给zabbix server。
zabbix proxy代理服务器
zabbix proxy 可以替zabbix server收集性能和可用性数据。proxy代理服务器是zabbix软件可选择部署的一部分;当然,proxy代理服务器可以帮助单台zabbix server分担负载压力。
三、zabbix典型架构部署图
四、安装zabbix
查看centos版本号
1
2
|
# more /etc/redhat-release ##演示环境 centos linux release 7.4.1708 (core) |
关闭selinux
1
2
3
|
# vi /etc/selinux/config ##关闭selinux selinux=disabled # setenforce 0 |
安装mariadb数据库,如果你已成功安装mysql此步可省略(mariadb是mysql的分支,其功能与mysql一样)
1
2
3
|
# yum install mariadb-server mariadb -y ##安装mariadb数据库 # systemctl start mariadb # systemctl enable mariadb |
添加zabbix yum源,安装zabbix server以及web管理
1
2
3
|
##添加zabbix yum源,安装zabbix server以及web管理 # rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm # yum install zabbix-server-mysql zabbix-web-mysql -y |
登陆到mysql创建数据库及目录
1
2
3
4
5
6
7
8
9
10
|
# mysql ##登陆到mysql创建数据库及目录 welcome to the mariadb monitor. commands end with ; or \g. your mariadb connection id is 3 server version: 5.5.56-mariadb mariadb server mariadb [(none)]> create database zabbix character set utf8 collate utf8_bin; query ok, 1 row affected (0.00 sec) mariadb [(none)]> grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix#1235' ; query ok, 0 rows affected (0.00 sec) |
将zabbix元数据添加到mariadb
1
2
|
##将zabbix元数据添加到mariadb # zcat /usr/share/doc/zabbix-server-mysql-3.4.4/create.sql.gz | mysql -uzabbix -pzabbix#1235 zabbix |
五、配置zabbix
1
2
3
4
5
6
7
8
9
10
|
# cp /etc/zabbix/zabbix_server.conf /etc/zabbix/zabbix_server.conf.1121 ##先备份一份原始文件 # vim /etc/zabbix/zabbix_server.conf ##使用缺省配置,仅仅设定数据库密码 dbpassword=zabbix #1235 # vim /etc/httpd/conf.d/zabbix.conf ##修改apache zabbix时区 php_value date .timezone asia /shanghai # cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bk # vim /etc/httpd/conf/httpd.conf ##author : leshami listen 3080 ##此处使用非缺省的80端口 ##blog : http://blog.csdn.net/leshami |
启动相关服务
1
2
3
4
5
6
7
8
9
10
|
# systemctl start zabbix-server.service # systemctl enable zabbix-server.service # systemctl start httpd # systemctl enable httpd # netstat -nltp|egrep "zabbix|httpd|mysql" tcp 0 0 0.0.0.0:10051 0.0.0.0:* listen 15720/zabbix_server tcp 0 0 0.0.0.0:3080 0.0.0.0:* listen 15385/httpd tcp 0 0 0.0.0.0:3306 0.0.0.0:* listen 14146/mysqld tcp6 0 0 :::10051 :::* listen 15720/zabbix_server |
防火墙配置
1
2
3
|
# firewall-cmd --add-port=3080/tcp --permanent ##添加web 端口 # firewall-cmd --add-port=10051/tcp --permanent ##添加zabbix_server 端口 # systemctl reload firewalld.service |
六、zabbix图形界面安装配置
打开浏览器,输入http://ip:3080/zabbix
配置zabbix数据库的基本信息与zabbix管理员账号与密码
设置zabbix服务端的ip,端口与名称
七、zabbix客户端安装及配置
对于zabbix服务器,自身也可以被监控。对于自身的监控,也应当安装agent端
对于非本机的agent安装,应先配置yum源,再安装agent端,修改agent配置文件指向服务端
1
2
3
4
5
6
7
8
|
# yum install zabbix-agent -y # systemctl enable zabbix-agent.service agent端配置 [root@ydq-mnt zabbix] # vim /etc/zabbix/zabbix_agentd.conf server=127.0.0.1,10.80.234.38 serveractive=127.0.0.1,10.80.234.38 # systemctl start zabbix-agent.service |
八、一些注意事项
1、安装前,建议配置服务器端和客户端/etc/hosts文件,即将服务器端与客户端主机ip映射关系添加到当前主机
2、服务器端和agent端配置文件中使用统一的hostname,区分大小写。否则容易出现无法连接的情形
3、防火墙端口放开,对于非本地agent端,开放端口10050
至此为止zabbix3.4 基本安装成功,详细使用方法大家可以到我们网站上查询
原文链接:http://blog.csdn.net/leshami/article/details/78708049