zabbix3.4.7搭建及邮件告警
Zabbix3.4.7部署 系统环境: CentOs7.2 1.关闭selinux 1.1 [root@localhost ~]# setenforce 0 #临时关闭 1.2 [root@localhost ~]# vi /etc/selinux/config #将selinux=enforcing改为SELINUX=disabled #永久关闭 2.关闭防火墙 2.1 [root@localhost ~]# systemctl stop firewalld.service #停止防火墙 2.2 [root@localhost ~]# systemctl disable firewalld.service #禁止开机自启动 3.zabbix3.4程序安装 3.1 配置zabbix的yum源 [root@localhost ~]#rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm 3.2安装zabbix程序包,安装mysql、zabbxi-agent [root@localhost ~]# yum install -y zabbix-server-mysql zabbix-web-mysql zabbix-agent mariadb-server 3