共计 4595 个字符,预计需要花费 12 分钟才能阅读完成。
Zabbix是一个基于 WEB 界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。
一、系统环境
CentOS7
LAMP
Zabbix-server
二、关闭 Selinux
sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config
更改 selinux 需要重启系统(reboot 或 init 6 重启)才会生效!
三、暂时关闭防火墙
systemctl stop firewalld #关闭防火墙
四、搭建 LAMP 环境
本次安装使用 yum 安装
1、安装软件包和依赖包
yum -y install wget net-snmp-devel OpenIPMI-devel httpd openssl-devel Java lrzsz fping-devel libcurl-devel perl-DBI pcre-devel libxml2 libxml2-devel mysql-devel gcc php php-bcmath php-gd php-xml php-mbstring php-ldap php-mysql.x86_64 php-pear php-xmlrpc net-tools wget vim-enhanced
2、安装 yum 源
wget -P /etc/yum.repos.d http://mirrors.aliyun.com/repo/Centos-7.repo
3、安装 http、mariadb、php
yum -y install mariadb mariadb-server php php-mysql httpd
4、启动程序
http:
systemctl start httpd
systemctl enable httpd
mariadb:
systemctl start mariadb
systemctl enable mariadb
使用 netstat -lntp 查看端口启动情况(80 和 3306 端口)
5、配置 http 支持 PHP
编辑配置文件 httpd.conf
vi /etc/httpd/conf/httpd.conf
DirectoryIndex index.html index.php #添加 index.php
:wq #保存退出
编辑 php 测试页面:
cd /var/www/html/
vi index.php
<?php
$servername = “localhost”;
$username = “zabbix”;
$password = “zabbix”;
// 创建连接
$conn = new mysqli($servername, $username, $password);
// 检测连接
if ($conn->connect_error) {
die(“ 连接 mariadb 失败!!: ” . $conn->connect_error);
}
echo “ 连接 mariadb 成功!!”;
phpinfo();
php?>
重启 httpd 服务器:systemctl restart httpd
6、配置 mariadb 数据库
设置 root 密码
grant all privileges on *.* to 'root'@'localhost' identified by 'withub';
grant all privileges on *.* to 'root'@'%' identified by 'withub';
创建 zabbix 数据库
mysql -uroot -pwithub
create database zabbix default character set utf8 collate utf8_bin;
创建 zabbix 数据库用户
grant all privileges on zabbix.* to 'zabbix'@'localhost' identified by 'zabbix';
grant all privileges on zabbix.* to 'zabbix'@'%' identified by 'zabbix';
flush privileges; #刷新数据库
测试 zabbix 用户登录数据库
mysql -uzabbix -pzabbix
show databases; #查看数据库
quit #退出数据库
浏览器访问 http://IP/index.php 访问!
五、安装 zabbix server3.0
1、安装 zabbix3.0 需要的 EPEL 源和 YUM 源
rpm -ivh http://mirrors.aliyun.com/epel/7/x86_64/e/epel-release-7-6.noarch.rpm
rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm
2、安装 zabbix3.0 软件
yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-get
通过安装完成可能看到目前的 zabbix-server 的版本号
3、zabbix 相关配置
cd /usr/share/doc/zabbix-server-mysql-3.0.2/
导入 zabbix 数据库
zcat create.sql.gz | mysql -uroot -pwithub zabbix
修改 zabbix sever 的配置文件
vim /etc/zabbix/zabbix_server.conf
LogFile=/var/log/zabbix/zabbix_server.log
LogFileSize=0
PidFile=/var/run/zabbix/zabbix_server.pid
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix
SNMPTrapperFile=/var/log/snmptrap/snmptrap.log
Timeout=4
AlertScriptsPath=/usr/lib/zabbix/alertscripts
ExternalScripts=/usr/lib/zabbix/externalscripts
LogSlowQueries=3000
上述配置文件中,我们只需要关注 DBHost、DBName、DBUser、DBPassword 几项即可。这几项是配置 zabbix server 连接 mysql 数据库的参数。
修改 httpd 中 zabbix.conf 参数
vim /etc/httpd/conf.d/zabbix.conf
Alias /zabbix /usr/share/zabbix
<Directory “/usr/share/zabbix”>
Options FollowSymLinks
AllowOverride None
Require all granted
<IfModule mod_php5.c>
php_value max_execution_time 300
php_value memory_limit 128M
php_value post_max_size 16M
php_value upload_max_filesize 2M
php_value max_input_time 300
php_value always_populate_raw_post_data -1
php_value date.timezone Asia/Chongqing #这行改为目前参数,时区
</IfModule>
</Directory>
4、启动 zabbix-server
systemctl start zabbix-server
systemctl enable zabbix-server
5、问题解决,启动报错
Centos7 中 gnutls.x86_64(gnutls.x86_64 3.3.8-14.el7_2)版本过高,需要降级 3.1.18-8.el7(1.20)
解决办法:
1. 下载 gnutls-3.1.18-8.el7.x86_64.rpm
2. 降级 gnutls
rpm -Uvh --force gnutls-3.1.18-8.el7.x86_64.rpm 即可
重启 httpd:systemctl restart httpd
重启 zabbix-server:systemctl restart zabbix-server
六、登录 http://IP/zabbix/ 配置
Nest step
Nest step(核对是否符合安装需求)
配置数据库连接,Nest step
Nest step
Nest step
Finish
初始默认用户名 Admin,密码 zabbix,然后点击 sign in
完成!
先熟悉界面环境,接下来给大家分享如何监控一台服务器。
更多 Zabbix 相关教程集合:
在 Ubuntu 16.04 服务器上安装 Zabbix 3.2 http://www.linuxidc.com/Linux/2017-07/145519.htm
CentOS 7 LNMP 环境搭建 Zabbix3.0 http://www.linuxidc.com/Linux/2017-02/140134.htm
Ubuntu 16.04 安装部署监控系统 Zabbix2.4 http://www.linuxidc.com/Linux/2017-03/141436.htm
Zabbix 监控安装部署及警报配置 http://www.linuxidc.com/Linux/2017-03/141611.htm
Zabbix 触发器表达式详解 http://www.linuxidc.com/Linux/2017-03/141921.htm
Ubuntu 16.04 下安装部署 Zabbix3.0 http://www.linuxidc.com/Linux/2017-02/140395.htm
CentOS 6.3 下 Zabbix 监控 apache server-status http://www.linuxidc.com/Linux/2013-05/84740.htm
CentOS 7 下 Zabbix 3.0 安装详解 http://www.linuxidc.com/Linux/2017-03/141716.htm
CentOS 7.4 安装 Zabbix 3.4 http://www.linuxidc.com/Linux/2017-09/147202.htm
64 位 CentOS 6.2 下安装 Zabbix 2.0.6 http://www.linuxidc.com/Linux/2014-11/109541.htm
ZABBIX 的详细介绍:请点这里
ZABBIX 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-11/148868.htm