当前位置: 首页>移动开发>正文

centos7 安装部署 zabbix5.0 监控系统

一、安装Mariadb数据库

  1. centos7上安装mariadb数据库
yum install mariadb-server mariadb -y
systemctl start mariadb
systemctl enable mariadb
  1. 初始化mariadb数据库
[root@zbxserver ~]# mysql_secure_installation
Enter current password for root (enter for none):  ##这里回车一次
Set root password[Y/n] y  ##这里输入y并回车一次
New password:   ##这里输入一次root账号的密码,并回车一次。啰嗦,这里输入密码是不会显示的。
Re-enter new password:     ##这里再输入一次root账号的密码,并回车一次。
Password updated successfully!
Reloading privilege tables..
 ... Success!
 
Remove anonymous users[Y/n] y  ##这里输入y并回车一次
 ... Success!
 
Disallow root login remotely[Y/n] n  ##这里输入n并回车一次
 ... skipping.
 
By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.
 
Remove test database and access to it[Y/n] n  ##这里输入n并回车一次
 ... skipping.
 
Reload privilege tables now[Y/n] y  ##这里输入y并回车一次
 ... Success!
Thanks for using MariaDB!
  1. 创建zabbix所需的数据库、用户
MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;
MariaDB [(none)]> create user zabbix@localhost identified by '你的密码';
MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@localhost;
MariaDB [(none)]> exit
#在上面第三行中的“你的密码”写上用户zabbix的数据库密码,等会要用到

二、Zabbix5.0 server端的安装

  1. 基础准备工作
systemctl stop firewalld
systemctl disable firewalld
setenforce 0
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config

hostnamectl set-hostname zbxserver
 
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
  1. 安装并设置zabbixyum
    2-1.安装zabbix
rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm

2-2.修改zabbix源地址为阿里云的zabbix镜像地址

vim /etc/yum.repos.d/zabbix.repo
[zabbix]
name=Zabbix Official Repository - $basearch
baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
 
[zabbix-frontend]
name=Zabbix Official Repository frontend - $basearch
baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/frontend
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
 
[zabbix-debuginfo]
name=Zabbix Official Repository debuginfo - $basearch
baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/debuginfo/
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
gpgcheck=0
 
[zabbix-non-supported]
name=Zabbix Official Repository non-supported - $basearch
baseurl=https://mirrors.aliyun.com/zabbix/non-supported/rhel/7/x86_64/
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX
gpgcheck=0

#将zabbix官方的地址替换为阿里云的zabbix地址
  1. 查看yum的列表中是否有了zabbix(可略)
yum list | grep zabbix
  1. 安装zabbix主服务和agent程序
yum install zabbix-server-mysql zabbix-agent -y
  1. 安装SCL组件
yum install centos-release-scl -y
yum install zabbix-web-mysql-scl zabbix-apache-conf-scl -y
#如果提示没有php的话请安装
yum install rh-php72-php-mbstring rh-php72-php-bcmath rh-php72-php-gd rh-php72-php-mysqlnd rh-php72-php-xml rh-php72-php-ldap rh-php72-php-fpm rh-php72 -y
  1. 导入初始架构和数据
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
  1. 修改zabbix server的主配置文件、修改数据库密码
cp /etc/zabbix/zabbix_server.conf{,.bak}
vim /etc/zabbix/zabbix_server.conf
#将【DBPassword=】 修改为 【DBPassword=你的密码】然后保存退出
#注释:这里的密码就是刚才设置的数据库用户zabbix的密码,要保持一致
  1. 修改zabbix的前端页面的php时区
cp /etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf{,.bak}
vim /etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf
#将; php_value[date.timezone] = Europe/Riga 修改为 php_value[date.timezone] = Asia/Shanghai

#如果这行配置前面有#或者;,请删掉,然后保存退出即可
  1. 启动zabbix server 及相关服务,并设置为开机自启
systemctl restart zabbix-server zabbix-agent httpd rh-php72-php-fpm
systemctl enable zabbix-server zabbix-agent httpd rh-php72-php-fpm
  1. 验证zabbix是否安装成功
[root@zbxserver ~]# netstat -ntlup |grep zabbix
tcp        0      0 0.0.0.0:10050           0.0.0.0:*               LISTEN      10753/zabbix_agentd 
tcp        0      0 0.0.0.0:10051           0.0.0.0:*               LISTEN      16598/zabbix_server 
tcp6       0      0 :::10050                :::*                    LISTEN      10753/zabbix_agentd 
tcp6       0      0 :::10051                :::*                    LISTEN      16598/zabbix_server
注释:zabbix server使用的端口是10051,zabbix agent的端口是10050,这非常重要。

如果发现没有10050或者10051端口,那么请检查zabbix的日志。从日志中你将能很快定位问题点

tail -f /var/log/zabbix/zabbix_server.log

还可以使用命令mysql -u zabbix -p检查数据库是否正确
  1. 初始化zabbix server 的页面
打开浏览器,输入地址【http://本机IP/zabbix】

大概是第一页是zabbix的前端检查各个组件是否ok,必须全部是绿色打钩的

然后输入数据库的密码,密码就是数据库用户zabbix的密码

https://www.xamrdz.com/mobile/4vg1995621.html

相关文章: