Centos7虚拟机安装Zabbix 5.0 LTS

YUM 安装

1.关闭防火墙

systemctl stop firewalld

开机禁用防火墙自启

systemctl disable firewalld

设置临时关闭selinux

setenforce 0

设置永久关闭selinux

vim /etc/sysconfig/selinux

将第7行内容修改如下
SELINUX=disabled

reboot

2、安装 zabbix rpm ,使用阿里云 zabbix 源

rpm -Uvh https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm

sed -i ‘s#http://repo.zabbix.com#https://mirrors.aliyun.com/zabbix#’ /etc/yum.repos.d/zabbix.repo

yum clean all

3、安装 zabbix server 和 agent

yum install zabbix-server-mysql zabbix-agent -y

4、安装 Software Collections,后续安装高版本的 php,默认 yum 安装的 php 版本为 5.4 过低

yum install centos-release-scl -y

启用 zabbix 前端源,修改vi /etc/yum.repos.d/zabbix.repo,将[zabbix-frontend]下的 enabled 改为 1

enabled=1

5、安装 zabbix 前端和相关环境

yum install zabbix-web-mysql-scl zabbix-apache-conf-scl -y

数据库安装
1、yum 安装 centos7 默认的 mariadb 数据库

yum install mariadb-server -y

2、启动数据库,并配置开机自动启动

systemctl enable --now mariadb

3、使用以下命令初始化 mariadb 并配置 root 密码

mysql_secure_installation

4、使用 root 用户进入 mysql,并建立 zabbix 数据库,注意数据库编码

mysql

Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 22
Server version: 5.5.68-MariaDB MariaDB Server

Copyright © 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.

MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> create user zabbix@localhost identified by ‘zabbix’;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@localhost;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit
Bye

5、使用以下命令导入 zabbix 数据库,zabbix 数据库用户为 zabbix,密码为 password

zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uroot -p zabbix

zabbix配置
1、修改 zabbix server 配置文件vi /etc/zabbix/zabbix_server.conf 里的数据库用户和密码

DBPassword=password

DBname=root

2、修改 zabbix 的 php 配置文件vi /etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf 里的时区,改成 Asia/Shanghai

php_value[date.timezone] = Asia/Shanghai

3、启动相关服务,并配置开机自动启动

systemctl restart zabbix-server zabbix-agent httpd rh-php72-php-fpm

systemctl enable zabbix-server zabbix-agent httpd rh-php72-php-fpm

使用浏览器访问http://ip/zabbix 访问 zabbix 的 web 页面

检查各个组件配置是否正常

输入刚配置的数据库 zabbix 用户的密码

最后登入web
登录账号为 Admin,密码:zabbix

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

玩人工智能的辣条哥

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值