环境准备
zabbix-server IP:192.168.1.242
nds-server IP:192.168.1.202
web-server IP:192.168.1.203
客户端部署
关闭ebtables firewalld防火墙
[[email protected] ~]# systemctl stop ebtables firewalld
[[email protected] ~]# systemctl disable ebtables firewalld
关闭 selinux
[[email protected] ~]# vim /etc/sysconfig/selinux
[[email protected] ~]# setenforce 0
[[email protected] ~]# getenforce
安装zabbix repo源
rpm -ivh https://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm
安装zabbxi-agent软件包,即zabbix客户端软件
yum -y install zabbix-agent
编辑zabbix-agent的配置文件
[[email protected] ~]# vim /etc/zabbix/zabbix_agentd.conf
启动zabbix-agent服务并加入到开机启动
[[email protected] ~]# systemctl start zabbix-agent
[[email protected] ~]# systemctl enable zabbix-agent
[[email protected] ~]# systemctl status zabbix-agent
在zabbix web界面新建主机群组
在配置选项栏中点击主机,我们开始创建主机
agent代理接口:我们安装的zabbix-agent软件,需要安装zabbix-agent软件
SNMP接口:监控交换路由,需要在交换机 和路由器开启SNMP
JMX接口:
IPMI接口:监控硬件 需要ipmitools监控
此处不要着急点添加,因为我们还没有套用模板
接着我们在点击模板选项,进行模板套用
记得一定要点击小的添加,才算添加模板成功。点击大的添加代表添加主机成功,并没有套用模板。
添加模板成功。回到主机选项点击添加
同样的方式我们把web-server的主机也添加到vancen主机群组里
关闭ebtables firewalld防火墙
[[email protected] ~]# systemctl stop ebtables firewalld
[[email protected] ~]# systemctl disable ebtables firewalld
关闭selinux
[[email protected] ~]# vim /etc/sysconfig/selinux #永久关闭selinux
[[email protected] ~]# setenforce 0 #临时将selinux设置为permissive状态
[[email protected] ~]# getenforce #查看selinux状态
安装zabbix repo源
[[email protected] ~]# rpm -ivh https://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm
安装zabbix-agent软件
[[email protected] ~]# yum -y install zabbix-agent
编辑zabbix-agent配置文件修改zabbix server地址
[[email protected] ~]# vim /etc/zabbix/zabbix_agentd.conf
重启zabbix-agent服务,并添加到开机自启
[[email protected] ~]# systemctl start zabbix-agent
[[email protected] ~]# systemctl enable zabbix-agent
[[email protected] ~]# systemctl status zabbix-agent
在zabbix web界面添加web-server主机
原文地址:https://www.cnblogs.com/chenjiangfeng/p/9706523.html