文章目录

  • zabbix介绍
  • zabbix特点
  • 部署zabbix


zabbix介绍

zabbix是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。

zabbix能监视各种网络参数,保证服务器系统的安全运营;并提供灵活的通知机制以让系统管理员快速定位/解决存在的各种问题。

zabbix由2部分构成,zabbix server与可选组件zabbix agent。

zabbix server可以通过SNMP,zabbix agent,ping,端口监视等方法提供对远程服务器/网络状态的监视,数据收集等功能,它可以运行在Linux,Ubuntu,Solaris,HP-UX,AIX,Free BSD,Open BSD,OS X等平台上。

zabbix agent需要安装在被监视的目标服务器上,它主要完成对硬件信息或与操作系统有关的内存,CPU等信息的收集。

zabbix server可以单独监视远程服务器的服务状态;同时也可以与zabbix agent配合,可以轮询zabbix agent主动接收监视数据(agent方式),同时还可被动接收zabbix agent发送的数据(trapping方式)。
另外zabbix server还支持SNMP (v1,v2),可以与SNMP软件(例如:net-snmp)等配合使用。

zabbix特点

zabbix的主要特点:

  • 安装与配置简单,学习成本低
  • 支持多语言(包括中文)
  • 免费开源
  • 自动发现服务器与网络设备
  • 分布式监视以及WEB集中管理功能
  • 可以无agent监视
  • 用户安全认证和柔软的授权方式
  • 通过WEB界面设置或查看监视结果
  • email等通知功能

zabbix主要功能:

  • CPU负荷
  • 内存使用
  • 磁盘使用
  • 网络状况
  • 端口监视
  • 日志监视

部署zabbix

一、部署lamp架构,并测试
安装apache

[root@139 ~]# yum -y install httpd
[root@139 ~]# vim /etc/httpd/conf/httpd.conf
<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>
[root@139 ~]# systemctl restart httpd
[root@139 ~]# systemctl enable httpd

安装php服务

[root@139 ~]# yum -y install php-xml.x86_64  php-json.x86_64  php-mysqlnd.x86_64  php-common.x86_64  php-fpm.x86_64  php-bcmath.x86_64  php-cli.x86_64  php.x86_64  php-gd.x86_64  php-pdo.x86_64  php-devel.x86_64
[root@139 ~]# vim /etc/php.ini
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone =Asia/Shanghai
[root@139 ~]# systemctl restart php-fpm.service
[root@139 ~]# systemctl enable php-fpm.service
[root@139 ~]# systemctl stop firewalld

zabbix监控supervisor服务 zabbix. 监控哪些服务_zabbix

安装数据库

[root@139 ~]# yum -y install mariadb-server mariadb
[root@139 ~]# systemctl start mariadb
[root@139 ~]# systemctl enable mariadb
[root@139 ~]# mysql_secure_installation		初始化设置密码,其他都选Y
[root@139 ~]# mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 27
Server version: 10.3.28-MariaDB MariaDB Server

Copyright (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)]>

二、部署zabbix监控软件
配置yum源

[root@139 ~]# vim /etc/yum.repos.d/zabbix.repo
[zabbix-aliyun]
name=zabbix-aliyun
baseurl=https://mirrors.aliyun.com/zabbix/zabbix/4.4/rhel/8/x86_64/
enable=1
gpgcheck=0
[root@139 ~]# yum makecache

安装zabbix

[root@139 ~]# yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-agent

配置数据库

[root@139 ~]# mysql -uroot -p123456
MariaDB [(none)]> create database zabbix default character set utf8;
Query OK, 1 row affected (0.000 sec)

MariaDB [(none)]> grant all on zabbix.* to zabbix@'localhost' identified by '123456';
Query OK, 0 rows affected (0.000 sec)

MariaDB [(none)]>  flush privileges;
Query OK, 0 rows affected (0.000 sec)

[root@139 ~]# zcat /usr/share/doc/zabbix-server-mysql/create.sql.gz | mysql -uzabbix -p123456 zabbix

查看zabbix数据库

[root@139 ~]# mysql -uroot -p123456
MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| zabbix             |
+--------------------+
4 rows in set (0.000 sec)

MariaDB [(none)]> use zabbix;

MariaDB [zabbix]> show tables;
+----------------------------+
| Tables_in_zabbix           |
+----------------------------+
| acknowledges               |
| actions                    |
| alerts                     |
| application_discovery      |
| application_prototype      |
...

配置zabbix配置文件

[root@139 ~]# vim /etc/zabbix/zabbix_server.conf
ListenPort=10051 
DBHost=localhost 
DBName=zabbix 
DBUser=zabbix 
DBPassword=123456 
DBSocket=/var/lib/mysql/mysql.sock 
ListenIP=0.0.0.0 
[root@139 ~]# systemctl restart zabbix-server.service
[root@139 ~]# systemctl enable zabbix-server.service

浏览器访问

登录默认用户名为Admin,密码为zabbix

zabbix监控supervisor服务 zabbix. 监控哪些服务_mysql_02


zabbix监控supervisor服务 zabbix. 监控哪些服务_php_03


zabbix监控supervisor服务 zabbix. 监控哪些服务_mysql_04


zabbix监控supervisor服务 zabbix. 监控哪些服务_服务器_05


zabbix监控supervisor服务 zabbix. 监控哪些服务_服务器_06


zabbix监控supervisor服务 zabbix. 监控哪些服务_服务器_07


zabbix监控supervisor服务 zabbix. 监控哪些服务_php_08


zabbix监控supervisor服务 zabbix. 监控哪些服务_linux_09