centos7 zabbix 5.0从搭建到监控
1.zabbix介绍
Zabbix 是一款功能强大的分布式开源监控系统,一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。
我这里用两台机子,用80监控97。
zabbix server端(监控端)IP地址:192.168.3.80
zabbix agent端(被监控端)IP地址:192.168.3.97
此篇记录为先搭建zabbix server端,再在部署zabbix agent并实现web监控。
2.开始安装zabbix server端
1.查找主机IP地址(80机子)
ip addr
2.修改主机名
hostnamectl set-hostname zabbix
su
3.关闭防火墙 和 selinux
systemctl stop firewalld
systemctl disable firewalld
setenforce 0
SELINUX=disable
sed -i 's#SELINUX=enable#SELINUX=disabled#g' /etc/selinux/config
4.安装数据库mariadb并初始化
yum install mariadb mariadb-server mariadb-devel -y
systemctl start mariadb && systemctl enable mariadb
清空数据库初始化
mysql_secure_installation
回车 -y 输入 新密码123456 密码随意
5.创建初始数据库、用户
mysql -uroot -p
password:123456
mysql> show databases; 查看默认数据库
mysql> create database zabbix character set utf8 collate utf8_bin; 更改编码为utf8
mysql> create user zabbix@localhost identified by '123456';
创建用户zabbix;密码为 123456
mysql> grant all privileges on zabbix.* to zabbix@localhost;
mysql> flush privileges; 立即生效
mysql> quit; 退出
6.获取zabbix的下载源 并 添加zabbix.repo源
rpm -Uvh https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
sed -i 's#http://repo.zabbix.com#https://mirrors.aliyun.com/zabbix#' /etc/yum.repos.d/zabbix.repo
yum clean all
7.安装 zabbix server 、agent
前端源
相关环境
yum install zabbix-server-mysql zabbix-agent -y
yum install centos-release-scl -y
yum install zabbix-web-mysql-scl zabbix-apache-conf-scl -y
8.启用 zabbix 前端源 修改/etc/yum.repos.d/zabbix.repo
vi /etc/yum.repos.d//zabbix.repo
把enabled=0 改成 1
9.导入 zabbix 数据库信息
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
随后输入密码
编辑配置文件 /etc/zabbix/zabbix_server.conf
vi /etc/zabbix/zabbix_server.conf
找到DBPassword 把前面的#号去掉 并改成=123456(数据库密码)
#grep '^DBPa' /etc/zabbix/zabbix_server.conf 这条是检查命令
10.修改时间与地区
vi /etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf
最底下那句修改:
php_value[date.timezone] = Asia/Shanghai
11.启动相关服务,并配置开机自动启动
systemctl restart zabbix-server zabbix-agent httpd rh-php72-php-fpm
systemctl enable zabbix-server zabbix-agent httpd rh-php72-php-fpm
systemctl enable zabbix-server.service && systemctl enable zabbix-agent && systemctl enable httpd && systemctl enable rh-php72-php-fpm
并最好重启下虚拟机,reboot
输入网址就可以看见我们搭建的网站
http://EIP/zabbix/zabbix.php?action=dashboard.view (将EIP改为自己的IP地址)
按Next step 再Next step这个是上面的网页标题 我就输入huang
然后Next step Next step
下图为更改为中文
以上就是zabbix-server端的搭建,接下来在192.168.3.97上部署zabbix-agent端。
3.在另一台机部署agent端
1.查找主机IP地址(97机子)
ip addr
2.修改主机名
hostnamectl set-hostname c1
su
3.关闭防火墙 和 selinux
systemctl stop firewalld
systemctl disable firewalld
setenforce 0
SELINUX=disable
sed -i 's#SELINUX=enable#SELINUX=disabled#g' /etc/selinux/config
4.添加zabbix.repo源
rpm -Uvh https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
sed -i 's#http://repo.zabbix.com#https://mirrors.aliyun.com/zabbix#' /etc/yum.repos.d/zabbix.repo
5.安装agent2 和 启动客户端
yum install zabbix-agent2 -y
systemctl enable --now zabbix-agent2
6.修改配置文件 并重启agent2(一一对应)
vi /etc/zabbix/zabbix_agent2.conf
Server 192.168.3.80
ServerActive 192.168.3.80
Hostname c1
即前两个=监控端的IP地址,第三个=主机名
grep -Ev '^#|^$' /etc/zabbix/zabbix_agent2.conf 检查的命令
systemctl restart zabbix-agent2 重启agent2
7.验证联通性。
在服server端(80机子)安装zabbix-get 通过命令行验证是否能ping通agent端(97机子)
yum install zabbix-get -y
zabbix_get -s '192.168.3.97' -p 10050 -k 'agent.ping' 显示1就是ping通了
4.解决中文乱码
效果图:前 ——> 后
在server端(80机子)安装wqy-microhei-fonts
yum -y install wqy-microhei-fonts
alias
\cp /usr/share/fonts/wqy-microhei/wqy-microhei.ttc /usr/share//fonts/dejavu/DejaVuSans.ttf
然后刷新下界面即可看到效果。
5.web网页监控操作
如图所示:1-2-3-4-5
然后看到这个ZBX跳出来,就监控上了。