一、参考链接
阿里巴巴开源镜像站-OPSX镜像站-阿里云开发者社区 (aliyun.com)
zabbix镜像-zabbix下载地址-zabbix安装教程-阿里巴巴开源镜像站 (aliyun.com)
二、Zabbix简介
Zabbix 是一个基于 WEB 界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。它能监视各种网络参数,保证服务器系统的安全运营;并提供灵活的通知机制以让系统管理员快速定位/解决存在的各种问题。下载地址:https://mirrors.aliyun.com/za...
三、Zabbix监控平台安装步骤
1、登录centos系统
C:\Users\xybdiy>ssh root@192.168.200.50
root@192.168.200.50's password:
Last login: Fri Dec 24 22:31:27 2021
[root@centos ~]# hostnamectl
Static hostname: centos
Icon name: computer-vm
Chassis: vm
Machine ID: f6fc8fb7991c4c518238af7c75f16046
Boot ID: daae3878cb56458bac0b89acff8aa851
Virtualization: vmware
Operating System: CentOS Linux 7 (Core)
CPE OS Name: cpe:/o:centos:centos:7
Kernel: Linux 3.10.0-1160.el7.x86_64
Architecture: x86-64
[root@centos ~]#
2、关闭防火墙和SELINUX安全模式
# 关闭防火墙
[root@centos ~]# systemctl stop firewalld
[root@centos ~]# systemctl disable firewalld# 关闭SELINUX安全模式(重启生效)
[root@centos ~]# setenforce 0
[root@centos ~]# cat /etc/selinux/config# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#enforcing - SELinux security policy is enforced.
#permissive - SELinux prints warnings instead of enforcing.
#disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three values:
#targeted - Targeted processes are protected,
#minimum - Modification of targeted policy. Only selected processes are protected.
#mls - Multi Level Security protection.
SELINUXTYPE=targeted[root@centos ~]#reboot
[root@centos ~]# getenforce
Disabled
3、更新YUM源为阿里云镜像源
[root@centos ~]# yum clean all
Loaded plugins: fastestmirror
Repodata is over 2 weeks old. Install yum-cron? Or run: yum makecache fast
Cleaning repos: base extras updates
Cleaning up list of fastest mirrors
[root@centos ~]# yum makecache
Loaded plugins: fastestmirror
Determining fastest mirrors
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
base| 3.6 kB00:00:00
extras| 2.9 kB00:00:00
updates| 2.9 kB00:00:00
(1/10): base/7/x86_64/group_gz| 153 kB00:00:00
(2/10): base/7/x86_64/filelists_db| 7.2 MB00:00:01
(3/10): extras/7/x86_64/filelists_db| 259 kB00:00:00
(4/10): extras/7/x86_64/primary_db| 243 kB00:00:00
(5/10): extras/7/x86_64/other_db| 145 kB00:00:00
(6/10): base/7/x86_64/other_db| 2.6 MB00:00:00
(7/10): base/7/x86_64/primary_db| 6.1 MB00:00:02
(8/10): updates/7/x86_64/filelists_db| 7.0 MB00:00:01
(9/10): updates/7/x86_64/other_db| 903 kB00:00:00
(10/10): updates/7/x86_64/primary_db|13 MB00:00:02
Metadata Cache Created
[root@centos ~]#
4、安装LNMP环境
[root@centos ~]# yum install httpd httpd-devel mariadb mariadb-server mariadb-devel php-common php-gd php-mbstring php-xml php-bcmath php-mysql php-cli php-devel php-pear -y
文章图片
5、添加Zabbix扩展源
https://mirrors.aliyun.com/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm
[root@centos ~]# rpm -ivh https://mirrors.aliyun.com/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm
Retrieving https://mirrors.aliyun.com/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm
warning: /var/tmp/rpm-tmp.Xp3vAb: Header V4 RSA/SHA512 Signature, key ID a14fe591: NOKEY
Preparing...################################# [100%]
Updating / installing...
1:zabbix-release-4.0-2.el7################################# [100%]
[root@centos ~]#
文章图片
6、更新Zabbix.repo源
#修改/etc/yum.repos.d/zabbix.repo内容如下:
cat>/etc/yum.repos.d/zabbix.repo<
文章图片
[root@centos ~]# cat>/etc/yum.repos.d/zabbix.repo< [zabbix]
> name=Zabbix Official Repository - $basearch
> baseurl=https://mirrors.aliyun.com/zabbix/zabbix/4.0/rhel/7/$basearch/
> enabled=1
> gpgcheck=1
> gpgkey=https://mirrors.aliyun.com/zabbix/RPM-GPG-KEY-ZABBIX-A14FE591
> [zabbix-non-supported]
> name=Zabbix Official Repository non-supported - $basearch
> baseurl=https://mirrors.aliyun.com/zabbix/non-supported/rhel/7/$basearch/
> enabled=1
> gpgkey=https://mirrors.aliyun.com/zabbix/RPM-GPG-KEY-ZABBIX
> gpgcheck=1
> EOF
[root@centos ~]#
[root@centos ~]# cat /etc/yum.repos.d/zabbix.repo
[zabbix]
name=Zabbix Official Repository -
baseurl=https://mirrors.aliyun.com/zabbix/zabbix/4.0/rhel/7//
enabled=1
gpgcheck=1
gpgkey=https://mirrors.aliyun.com/zabbix/RPM-GPG-KEY-ZABBIX-A14FE591
[zabbix-non-supported]
name=Zabbix Official Repository non-supported -
baseurl=https://mirrors.aliyun.com/zabbix/non-supported/rhel/7//
enabled=1
gpgkey=https://mirrors.aliyun.com/zabbix/RPM-GPG-KEY-ZABBIX
gpgcheck=1
[root@centos ~]#
7、安装Zabbix相关软件包
[root@centos ~]# yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent -y
[root@centos ~]# sed -i '/date.timezone/i date.timezone = PRC' /etc/php.ini
文章图片
8、启动相关服务
[root@centos ~]# systemctl start httpd
[root@centos ~]# systemctl enable httpd
Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.
[root@centos ~]# systemctl start mariadb
[root@centos ~]# systemctl enable mariadb
Created symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service to /usr/lib/systemd/system/mariadb.service.
[root@centos ~]#
9、创建数据库&密码授权
[root@centos ~]# mysql
Welcome to the MariaDB monitor.Commands end with ;
or \g.
Your MariaDB connection id is 2
Server version: 5.5.68-MariaDB MariaDB ServerCopyright (c) 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)]> grant all on zabbix.* to zabbix@'%' identified by 'zabbix';
MariaDB [(none)]> grant all on zabbix.* to zabbix@localhost identified by 'zabbix';
Query OK, 0 rows affected (0.00 sec)MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)MariaDB [(none)]> Ctrl-C -- exit!
Aborted
10、导入基础数据库
[root@centos ~]# vim /usr/share/doc/zabbix-server-mysql-4.0.37/create.sql.gz
[root@centos ~]# zcat /usr/share/doc/zabbix-server-mysql-4.0.37/create.sql.gz|mysql -uzabbix -p123456 zabbix
[root@centos ~]#
文章图片
[root@centos ~]# rpm -qa | grep zabbix
zabbix-release-4.0-2.el7.noarch
zabbix-web-mysql-4.0.37-1.el7.noarch
zabbix-web-4.0.37-1.el7.noarch
zabbix-agent-4.0.37-1.el7.x86_64
zabbix-server-mysql-4.0.37-1.el7.x86_64
[root@centos ~]#
11、设置时区
[root@zabbix-server ~]# vim /etc/php.ini
date.timezone = PRC
[root@zabbix-server ~]# vim /etc/httpd/conf.d/zabbix.conf
文章图片
12、修改Zabbix配置文件
[root@zabbix-server ~]# vim /etc/zabbix/zabbix_server.con
[root@zabbix-server ~]# grep -n '^'[a-Z] /etc/zabbix/zabbix_server.conf
38:LogFile=/var/log/zabbix/zabbix_server.log
49:LogFileSize=0
72:PidFile=/var/run/zabbix/zabbix_server.pid
82:SocketDir=/var/run/zabbix
91:DBHost=localhost
100:DBName=zabbix
116:DBUser=zabbix
124:DBPassword=zabbix
132:DBSocket=/var/lib/mysql/mysql.sock
357:SNMPTrapperFile=/var/log/snmptrap/snmptrap.log
472:Timeout=4
515:AlertScriptsPath=/usr/lib/zabbix/alertscripts
526:ExternalScripts=/usr/lib/zabbix/externalscripts
562:LogSlowQueries=3000
[root@zabbix-server ~]#
13、启动Zabbix
[root@zabbix-server ~]# systemctl start zabbix-server
[root@zabbix-server ~]# systemctl enable zabbix-server
Created symlink from /etc/systemd/system/multi-user.target.wants/zabbix-server.service to /usr/lib/systemd/system/zabbix-server.service.
[root@zabbix-server ~]#
[root@zabbix-server ~]# netstat -ntpl
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local AddressForeign AddressStatePID/Program name
tcp00 0.0.0.0:33060.0.0.0:*LISTEN2088/mysqld
tcp00 0.0.0.0:220.0.0.0:*LISTEN927/sshd
tcp00 127.0.0.1:250.0.0.0:*LISTEN1040/master
tcp00 0.0.0.0:100510.0.0.0:*LISTEN2350/zabbix_server
tcp600 :::80:::*LISTEN2305/httpd
tcp600 :::22:::*LISTEN927/sshd
tcp600 ::1:25:::*LISTEN1040/master
tcp600 :::10051:::*LISTEN2350/zabbix_server
[root@zabbix-server ~]#
14、Zabbix WEB GUI安装配置
通过浏览器Zabbix_WEB验证,通过浏览器访问http://192.168.200.50/zabbix
文章图片
显示PHP版本信息等内容
文章图片
填写连接数据库的必要信息
文章图片
填写Zabbix服务端的详细信息
文章图片
确认配置信息
文章图片
安装Zabbix
文章图片
输入账号登录
文章图片
文章图片
设置中文界面
文章图片
文章图片
【【阿里云镜像】基于YUM方式搭建Zabbix监控平台】至此,Zabbix平台搭建完成。