《一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码》,点击传送门,即可获取!
ps -ef | grep zabbix
#查看端口
netstat -tlunp | grep zabbix
说明:--permanent
参数代表永久生效,不熟悉的命令,建议使用firewall-cmd --help
查看帮助命令。
2.1、永久生效,加入zabbix-server与zabbix-agent
firewall-cmd --zone=public --add-service=zabbix-agent --permanent
firewall-cmd --zone=public --add-service=zabbix-server --permanent
2.2、开放80端口,zabbix前端访问默认使用80端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
2.3、额外开放10050与10051,监控使用到
firewall-cmd --zone=public --add-port=10050/tcp --permanent
firewall-cmd --zone=public --add-port=10051/tcp --permanent
本人测试环境是Redhat系列Centos7.3配合MySQL5.6使用搭建zabbix监控系统。下面是官方文档,同样有中文版,如下:
https://www.zabbix.com/documentation/4.0/zh/manual/installation/install_from_packages/rhel_centos
1、zabbix-server服务安装
1.1、准备好官方提供的yum源
#编辑
vim /etc/yum.repos.d/zabbix.repo
#加入如下内容
[zabbix]
name=Zabbix Official Repository - $basearch
baseurl=http://repo.zabbix.com/zabbix/4.0/rhel/7/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Z