Zabbix搭建web报错 【111】 Connection refused,【113】No route to host

1、Get value from agent failed: cannot connect to [[192.168.11.16]:10050]: [111] Connection refused
解决:
安装agent客户端并开启

http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/ #被监控机器agent代理包 #/bin/systemctl start zabbix-agent.service启动

2、Get value from agent failed: cannot connect to [[192.168.11.11]:10050]: [113] No route to host
解决:
先检查agent是否开启 #ps -ef|grep agent
检查selinux状态是否为disable #cat /etc/selinux/config SELINUX=disabled
检查NetworkManager状态是否为stop #systemctl stop NetworkManager
防火墙问题:

firewall-cmd –state #查看防火墙状态
systemctl stop firewalld.service #关闭防火墙
systemctl start firewalld.service #开启防火墙

猜你喜欢

转载自blog.csdn.net/Cai_suyd/article/details/82625333