- A+
一、安装zabbix-server
操作系统:CentOS 7.5
1、首先关闭防火墙与SElinux
关闭防火墙
systemctl stop firewalld&&systemctl disable firewalld
关闭SELinux
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
2、替换阿里云Zabbix源
vi zabbix_aliyun.sh
复制下面的脚本
#!/bin/bash echo -e "请给出要安装的zabbix版本号,建议使用4.x的版本 33[31musage:./zabbix_aliyun.sh 4.0|4.4|4.5|5.0 33[0m" echo "例如要安装4.4版本,在命令行写上 ./zabbix_aliyun.sh 4.4" if [ -z $1 ];then exit fi VERSION=$1 if [ -f /etc/yum.repos.d/zabbix.repo ];then rm -rf /etc/repos.d/zabbix.repo fi rpm -qa | grep zabbix-release && rpm -e zabbix-release rpm -Uvh https://mirrors.aliyun.com/zabbix/zabbix/$VERSION/rhel/7/x86_64/zabbix-release-$VERSION-1.el7.noarch.rpm sed -i "s@zabbix/.*/rhel@zabbix/$VERSION/rhel@g" /etc/yum.repos.d/zabbix.repo sed -i 's@repo.zabbix.com@mirrors.aliyun.com/zabbix@g' /etc/yum.repos.d/zabbix.repo [ $? -eq 0 ] && echo "阿里云的zabbix源替换成功" || exit 1 yum clean all yum makecache fast
然后执行命令:看到下图表示替换成功
bash zabbix_aliyun.sh 5.0
3、由于zabbix提供集中的web监控管理界面,因此服务在web界面的呈现需要LAMP架构支持。
安装httpd php
yum install -y httpd php php-mysql php-gd libjpeg* php-ldap php-odbc php-pear php-xml php-xmlrpc php-mhash
4、安装常用的开发软件
yum groups install "Development Tools"
5、安装Zabbix5.0仓库
rpm -ivh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
yum clean all
6、安装Zabbix server and agent
yum install zabbix-server-mysql zabbix-agent -y
7、启用Red Hat软件集合
SCL(Software Collections)可以让你在同一个操作系统上安装和使用多个版本的软件,而不会影响整个系统的安装包
yum install centos-release-scl -y
启用zabbix-deprecated repository
vi /etc/yum.repos.d/zabbix.repo
8、安装zabbix前端
yum install -y zabbix-web-mysql-scl zabbix-apache-conf-scl
9、安装数据库
yum -y install mariadb-server mariadb
启动mariadb
systemctl start mariadb&&systemctl enable mariadb
查看mariadb运行状态
systemctl status mariadb
启动msyql后执行初始安全设置,设置数据库密码为123456
mysqladmin -u root password "123456"
创建初始数据库
1.mysql -uroot -p #输入密码123456 2.create database zabbix character set utf8 collate utf8_bin; 3.create user zabbix@localhost identified by 'password'; #密码是password,导入Zabbix数据库结构和数据输入这个密码 4.grant all privileges on zabbix.* to zabbix@localhost; 5.quit; #退出
10、在Zabbix服务器主机上,导入初始架构和数据。系统将提示您输入新创建的密码
回车密码是password
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
为Zabbix服务器配置数据库,后面配置数据库的web界面会用到此数据库密码,去掉注释加上password
vi /etc/zabbix/zabbix_server.conf
11、为Zabbix前端配置PHP
编辑文件/etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf,取消注释并设置正确的时区
vi /etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf
php_value[date.timezone] = Asia/Shanghai
时区修改完成后一定要记得重启PHP服务,否则web界面PHP会报错
重启PHP
systemctl restart rh-php72-php-fpm
启动Zabbix服务及相关服务
systemctl restart zabbix-server zabbix-agent httpd rh-php72-php-fpm&&systemctl enable zabbix-server zabbix-agent httpd rh-php72-php-fpm
12、配置Zabbix Web前端
浏览器输入http://ip/zabbix,Zabbix初始用户名:Admin,初始密码为:zabbix
点next step
如果上面提到的配置时区后未重启PHP时,这里会报错,重启一下PHP就好了
重启PHP命令
systemctl restart rh-php72-php-fpm
配置mysql数据库账号和密码, 输入zabbix帐户的密码,点next step
密码是前面设置过的password
Name那里起一个名, 点next step
点finish
至此zabbix前端配置完成
输入账号Admin密码zabbix
13、Zabbix前端界面设置成中文
1、选择User settings,语言选择中文,点击update
2.、显示中文乱码解决方法(特别是图表那块的汉字)
在zabbix-server服务器上安装如下文件符集
yum install -y wqy-microhei-fonts
然后替换linux上默认的字符集,输入y,然后回车
cp /usr/share/fonts/wqy-microhei/wqy-microhei.ttc /usr/share/fonts/dejavu/DejaVuSans.ttf
最后刷新网页或重启zabbix-server,查看乱码是否解决