• 关闭selinux

sed -i "s/SELINUX=enforcing/SELINUX=disabled/" /etc/selinux/config
setenforce 0
  • 防火墙设置 
    允许zabbix-agent的10050端口通过

firewall-cmd --permanent --add-port=10050/tcpfirewall-cmd --reload

安装zabbix 软件源

rpm -ivh http://repo.zabbix.com/zabbix/2.4/rhel/7/x86_64/zabbix-release-2.4-1.el7.noarch.rpm

安装zabbix-agent

yum install -y zabbix-sender zabbix-agent zabbix

sed -i "s/Server=127.0.0.1/Server=10.0.0.101/" /etc/zabbix/zabbix_agentd.conf

    后面的ip地址为zabbix服务端的主机ip地址 sed -i "s/ServerActive=127.0.0.1/ServerActive=10.0.0.101/" /etc/zabbix/zabbix_agentd.conf

    后面的ip地址为zabbix服务端的主机ip地址 sed -i "s/Hostname=Zabbix server/Hostname=10.0.0.105/" /etc/zabbix/zabbix_agentd.conf

    后面的ip地址为zabbix客户端的主机ip地址


  • 启动并设置开机自启

systemctl restart zabbix-agent.service
systemctl enable zabbix-agent.service

最后一步,验证10050端口是否打开

netstat -tlnp | grep 10050