一、Zabbix特性简介
Zabbix可以监控网络和服务的监控状况. Zabbix利用灵活的告警机制,允许用户对事件发送基于Email的告警. 这样可以保证快速的对问题作出相应. Zabbix可以利用存储数据提供杰出的报告及图形化方式. 这一特性将帮助用户完成容量规划。
二、本次实战环境
名称 主机名 ipzabbix server server134 192.168.159.134
zabbix agent server135 192.168.159.135
三、服务器安装步骤
3.1、安装开发软件包及zabbix安装所依赖的软件包
[root@server134 ~]yum groupinstall "Development Tools"
[root@server134 ~]# yum install php-common php-odbc php-pear curl curl-devel perl-DBI php-xml ntpdate php-bcmath mysql httpd php-mysql mysql-server php php-gd ntpdate
3.2、同步服务端的时间,避免时间不同导致不可用的监控数据
[root@server134 ~]# ntpdate pool.ntp.org
8 Feb 18:41:20 ntpdate[2871]: step time server 85.199.214.100 offset 4.665038 sec
3.3、创建zabbix服务运行的用户和组
[root@server134 ~]# groupadd -g 201 zabbix
[root@server134 ~]# useradd -g zabbix -u 201 -m zabbix
3.4、启动mysql、创建zabbix数据库、设置用户密码访问
[root@server134 ~]# /etc/init.d/mysqld start
[root@server134 ~]# mysql -u root -p
mysql> create database zabbix character set utf8;
Query OK, 1 row affected (0.08 sec)
mysql> grant all privileges on *.* to 'zabbix'@'%' identified by 'zishang77';
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
因本文使用的是mysql5.7,MySQL默认开启了validate_password插件,进行密码验证,需要很强的密码强度才能通过认证此版本对密码的要求比较严格,本文做了如下调整
查阅官方文档后发现有以下三种密码策略:
Policy Tests Performed0 or LOW Length
1 or MEDIUM Length; numeric, lowercase/uppercase, and special characters
2 or STRONG Length; numeric, lowercase/uppercase, and special characters; dictionary file
mysql> select @@validate_password_policy;
+----------------------------+
| @@validate_password_policy |
+----------------------------+
| MEDIUM |
+----------------------------+
1 row in set (0.00 sec)
mysql> SHOW VARIABLES LIKE 'validate_password%';
+--------------------------------------+--------+
| Variable_name | Value |
+--------------------------------------+--------+
| validate_password_check_user_name | OFF |
| validate_password_dictionary_file | |
| validate_password_length | 8 |
| validate_password_mixed_case_count | 1 |
| validate_password_number_count | 1 |
| validate_password_policy | MEDIUM |
| validate_password_special_char_count | 1 |
+--------------------------------------+--------+
7 rows in set (0.08 sec)
mysql> set global validate_password_policy=0;#设置密码的策略为low
Query OK, 0 rows affected (0.00 sec)
mysql> set global validate_password_mixed_case_count=0#设置指定了密码中大小字母的长度
-> ;
Query OK, 0 rows affected (0.00 sec)
mysql> set global validate_password_number_count=2;#设置指定了密码中数据的长度
Query OK, 0 rows affected (0.00 sec)
mysql> set global validate_password_special_char_count=0;#设置密码中的特殊字符为0
Query OK, 0 rows affected (0.00 sec)
mysql> set global validate_password_length=6;#设置密码长度为6
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> grant all privileges on *.* to 'zabbix'@'%' identified by 'zabbix';
Query OK, 0 rows affected, 1 warning (0.06 sec)
3.5、安装zabbix,并导入zabbix包中的数据到mysql的zabbix数据库中
[root@server134 mnt]# tar zxvf zabbix-2.4.8.tar.gz
[root@server134 mnt]# cd zabbix-2.4.8
[root@server134 mnt]# cd zabbix-2.4.8
[root@server134 zabbix-2.4.8]# mysql -uzabbix -pzabbix zabbix<database/mysql/schema.sql
mysql: [Warning] Using a password on the commnd line interface can be insecure.
[root@server134 zabbix-2.4.8]# mysql -uzabbix -pzabbix zabbix<database/mysql/images.sql
mysql: [Warning] Using a password on the command line interface can be insecure.
[root@server134 zabbix-2.4.8]# mysql -uzabbix -pzabbix zabbix<database/mysql/data.sql
mysql: [Warning] Using a password on the command line interface can be insecure.