这是zabbix WEB报的问题:Received empty response from Zabbix Agent at [192.168.10.105]. Assuming that agent dropped connection because of access permissions 如果全部配置好了查看服务是否开启: ps -ef |grep zabbix 再查看防火前的端口是否开启:https://www.cnblogs.com/wei9593/p/10419367.html
解决思路: 1.首先用主机ping下虚拟机IP,看是否能ping通 2.如果ping不通就看虚拟机防火墙是否开启,service iptables status [root@mysql ~]# service iptables statusiptables: Firewall is not running. 上图提示,防火墙才是关闭状态,如果不是上面提示,就执行命令 service iptables stop(临时关闭防火墙) chkconfig iptables off(永久关闭防火墙) 3.