解决:abbix服务端主机虽然显示已启用,但ZBX字体是红色的

1)查看防火墙、SElinux

[root@localhost ~]# getenforce
Permissive
[root@localhost ~]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
   Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
   Active: inactive (dead)
     Docs: man:firewalld(1)
  

设置/etc/selinux/config

[root@ kehuji ~]# setenforce 0
[root@ kehuji ~]# vim /etc/selinux/conf
SELINUX=disabled

2)agent是否开启,检查端口10050,可以看到只有server端口10051开启。因此需要开启agen

[root@localhost ~]# netstat -lntup|grep 1005
tcp        0      0 0.0.0.0:10050           0.0.0.0:*               LISTEN      26188/zabbix_agentd
tcp        0      0 0.0.0.0:10051           0.0.0.0:*               LISTEN      25877/zabbix_server
tcp6       0      0 :::10050                :::*                    LISTEN      26188/zabbix_agentd
tcp6       0      0 :::10051                :::*                    LISTEN      25877/zabbix_server

 3)查看 /etc/zabbix/zabbix_agent.conf配置文件是否正确

[root@ kehuji  ~]# vim  /etc/zabbix/zabbix_agentd.conf

Server=127.0.0.1,192.168.10.100         //添加Zabbix服务端的IP地址(117行)-控制中心的地址
ServerActive=127.0.0.1,192.168.10.100  //添加Zabbix服务端的IP地址(158行)-控制中心的地址
Hostname=kehuji.edu.cn          //本机的主机名(169行)

4)重启zabbix-agent服务 

[root@localhost ~]# systemctl start zabbix-agent.service
[root@localhost ~]# systemctl status zabbix-agent.service
最后检查,ZBX变绿,恢复正常

你可能感兴趣的:(Linux资料,网络运维与安全,网络,linux,运维)