数据库|Centos7部署安装zabbix5.0(一步一步很详细哟)看完必会。

Centos7.8 部署安装 zabbix 5.0

准备工作 centOS7.8 虚拟机 SHELL软件SSH远程登录调试
官网找到需要的yum源
Zabbix 的yum源https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
阿里yum源
https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/
组件
https://mirrors.aliyun.com/zabbix/non-supported/rhel/7/x86_64/
一.
1.1关闭防火墙
firewall-cmd --state #查看默认防火墙状态,关闭后显示not running,开启后显示running
systemctl stop firewalld.service #临时关闭firewall
systemctl disable firewalld.service #禁止firewall开机启动
1.2关闭SELINUX
vi /etc/selinux/config #将SELINUX=enforcing改为SELINUX=disabled 设置后需要重启才能生效
getenforce #检测selinux是否关闭,Disabled 为关闭
二.部署5.0zabbix服务器
2.1 安装zabbix的yum源
rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
ls /etc/yum.repos.d/ #查看文件已有zabbix.repo
vi /etc/yum.repos.d/zabbix.repo 打开然后用阿里yum替换官方yum 为了下载安装更快防止入坑
保存退出。
yum list | grep zabbix #查看安装包是否就位
【数据库|Centos7部署安装zabbix5.0(一步一步很详细哟)看完必会。】2.2安装Zabbix服务,代理
yum -y install zabbix-server-mysql zabbix-agent
安装CentOS扩展软件库
yum -y install centos-release-scl
2.3安装数据库
#yum -y install mariadb-server mariadb
#systemctl start mariadb #启动数据库
#systemctl enable mariadb #设置数据库开机启动
#mysql_secure_installation #数据库初始化
安装数据库初始化文件和Nginx
#yum install zabbix-web-mysql-scl zabbix-apache-conf-scl
创建数据库,用户并未给数据库用户授予权限。
#mysql -uroot -p
Enter password:
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)]> quit;
初始化数据库
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
配置zabbix服务的数据库
vi /etc/zabbix/zabbix_server.conf #将文件内容做如下修改DBPassword=password
2.4配置PHP环境
修改配置文件vi /etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf,将PHP时区修改为Asia/Shanghai
php_value[date.timezone] = Asia/Shanghai
启动zabbix和agent服务
#systemctl restart zabbix-server zabbix-agent httpd rh-php72-php-fpm
#systemctl enable zabbix-server zabbix-agent httpd rh-php72-php-fpm
三、软件配置
打开浏览器进行Zabbix初始化,在浏览器地址栏输入http://IP/zabbix,进入初始化界面如图:
默认账号密码Admin zabbix
切换中文界面
完成安装

    推荐阅读