zabbix环境安装
官方网站链接地址:
https://www.zabbix.com/documentation/4.0/zh/manual/installation/requirements
zabbix的基础服务架构
zabbix-agent ----> zabbix-server ----> 数据库 mysql <— zabbix web lamp
zabbix-server分析agent的相关数据并根据阈值进行告警同时进行写入到数据库里面;也会60s同步一次数据库里面的信息(web)
zabbix-agent收集服务器数据信息,例如一些自定义监控项,都会发给zabbix-server进行分析处理;
zabbix-web-mysql也就是web前面页面,进行管理、监控、配置。一些操作都会写入到数据库中,zabbix-server同步数据数据信息;
配置安装
配置zabbix yum仓库
下载
wget http://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-1.el7.noarch.rpm
本地安装
rpm -ivh zabbix-release-4.0-1.el7.noarch.rpm
配置zabbix的yum源
vim /etc/yum.repos.d/zabbix.repo
[zabbix]
name=Zabbix Official Repository - $basearch
baseurl=https://mirror.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
[zabbix-non-supported]
name=Zabbix Official Repository non-supported -$basearch
baseurl=https://mirror.tuna.tsinghua.edu.cn/zabbix/non-supported/rhel/7/$basearch/
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX
gpgcheck=1
安装zabbix服务端和zabbix-web前端
yum install zabbix-server-mysql zabbix-web-mysql -y
安装mariadb,创建zabbix库,授权zabbix用户
yum install mariadb-server -y
启动数据库并且设置开机自起
systemctl start mariadb
systemctl enable mariadb
执行mysql
mysql_secure_installation
回车
n
一路y
创建zabbix库
mysqlMariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;
授权zabbix
MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@localhost identified by '123456';
导入zabbix表结构和初始数据
[root@yunlong66 ~]# zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p123456 zabbix
检查zabbix库是否导入成功
mysql -uroot zabbix -e 'show tables'
配置启动zabbix-server,在配置文件中修改这4项内容即可
vim /etc/zabbix/zabbix_server.conf
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=123456
启动zabbix-server
systemctl start zabbix-server
systemctl enable zabbix-server
检查:
netstat -lntup
修改Zabbix前端的PHP配置,并启动httpd
vi /etc/httpd/conf.d/zabbix.conf
php_value date.timezone Asia/Shanghai
systemctl start httpd
systemctl enable httpd
前端zabbix-web的安装
浏览器:http://192.168.111.66/zabbix
后期修改zabbix数据库密码的时候,需要修改的配置文件:
/etc/zabbix/web/zabbix.conf.php
登录zabbix地址
http://192.168.111.66/zabbix/zabbix.php
登录的账号密码;
Admin
zabbix