解决思路: 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.…
客户端配置zabbix-agent 后,网页端出现Get value from agent failed: cannot connect to [[192.168.186.130]:10050]: [113]No route to host的错误,主机没法被监听 1.服务器端ping 客户端 ping 192.168.186.130 2.如果能ping通,则是因为防火墙的原因,需关闭防火墙 service iptables stop #关闭防火墙 chkconfig iptables off #…