Zabbix是由Alexei Vladishev开发的一种网络监视、管理系统,基于Server-Client架构。可用于监控各种网络服务、服务器和网络机器等状态。
Zabbix可以说是运维人员必须掌握的软件之一。
安装步骤如下
关闭防护墙并禁止开机自启
[root@zabbix ~]# systemctl stop firewalld
[root@zabbix ~]# systemctl disable firewalld
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
关闭selinux并重启使其生效
[root@zabbix ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
[root@zabbix ~]# shutdown -r now
Connection closing...Socket close.
Connection closed by foreign host.
Disconnected from remote host(zabbix server) at 21:56:31.
获取zabbix官方软件源
[root@zabbix ~]# rpm -Uvh https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
将zabbix镜像源换为阿里云的
[root@zabbix ~]# sed -i 's#http://repo.zabbix.com#https://mirrors.aliyun.com/zabbix#' /etc/yum.repos.d/zabbix.repo
清理一些不必要的软件源
[root@zabbix ~]# yum clean all
已加载插件:fastestmirror
正在清理软件源: base extras updates zabbix zabbix-non-supported
Cleaning up list of fastest mirrors
安装mysql服务,可以选择centos自带的mariadb,也可以自行安装,如有需要自行看文章
还需要安装lib包
百度网盘 链接:https://pan.baidu.com/s/1cRdH6x19eIQL3b8b9xCEVw
提取码:0601
阿里云 链接:https://www.aliyundrive.com/s/JetCzaAv5Pi
[root@zabbix software]# rpm -ivh mysql-community-libs-compat-5.7.34-1.el7.x86_64.rpm
安装zabbix server和zabbix agent服务
[root@zabbix software]# yum install zabbix-server-mysql zabbix-agent -y
安装软件集 避免软件版本不同而引起冲突
[root@zabbix software]# yum install centos-release-scl -y
修改zabbix前端源 vim /etc/yum.repos.d/zabbix.repo
只需修改 frontend中的 enabled
安装zabbix前端环境
[root@zabbix software]# yum install zabbix-web-mysql-scl zabbix-apache-conf-scl -y
登录数据库
[root@zabbix software]# mysql -uroot -p
Enter password:数据库密码
创建zabbix所需数据库
#创建数据库
mysql> create database zabbix character set utf8 collate utf8_bin;
Query OK, 1 row affected (0.00 sec)
#修改数据库策略 方便我们后面设置弱类型的密码
mysql> set global validate_password_policy=0;
Query OK, 0 rows affected (0.00 sec)
mysql> set global validate_password_length=1;
Query OK, 0 rows affected (0.00 sec)
#创建数据库用户
mysql> create user zabbix@localhost identified by '123456';
Query OK, 0 rows affected (0.01 sec)
#授权
mysql> grant all privileges on zabbix.* to zabbix@localhost;
Query OK, 0 rows affected (0.00 sec)
#刷新使配置生效
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
#退出
quit;
将文件导入zabbix数据库
[root@zabbix software]# zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
Enter password: #密码 123456
修改zabbix server配置文件 vim /etc/zabbix/zabbix_server.conf
修改zabbix的php配置文件里的时区 vim /etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf
修改为
启动服务
[root@zabbix software]# systemctl restart zabbix-server zabbix-agent httpd rh-php72-php-fpm
设置服务开机自启
[root@zabbix software]# systemctl enable zabbix-server zabbix-agent httpd rh-php72-php-fpm
Created symlink from /etc/systemd/system/multi-user.target.wants/zabbix-server.service to /usr/lib/systemd/system/zabbix-server.service.
Created symlink from /etc/systemd/system/multi-user.target.wants/zabbix-agent.service to /usr/lib/systemd/system/zabbix-agent.service.
Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.
Created symlink from /etc/systemd/system/multi-user.target.wants/rh-php72-php-fpm.service to /usr/lib/systemd/system/rh-php72-php-fpm.service.
在浏览器登录 配置服务的主机IP/zabbix 我这里是192.168.83.131/zabbix
一直点下一步 直到需要输入数据库密码 按照博主的步骤 密码为 123456
接着一直点下一步 最后完成
来到登录界面 账号为Admin 密码为zabbix 注意大小写
修改语言 设置为中文 点击 update
安装字体 解决乱码
[root@zabbix software]# yum -y install wqy-microhei-fonts
\cp /usr/share/fonts/wqy-microhei/wqy-microhei.ttc /usr/share/fonts/dejavu/DejaVuSans.ttf
下一篇文章 将介绍如何配置添加客户机即被监控的主机