本文主要是介绍每日一记:zabbix禁用主机后报错cannot send list of active checks to *.*.*.*: host [*] not monitored,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
配置了监控项类型为”Zabbix客户端(主动式)“的主机被停用后,查看zabbix服务器日志发现报错:
[root@hostname ~]# tail -f /var/log/zabbix/zabbix_server.log
26110:20190718:103613.157 cannot send list of active checks to "172.*.*.203": host [MES-BAK] not monitored26102:20190718:103614.364 cannot send list of active checks to "172.*.*.106": host [MC27-010] not monitored26100:20190718:103621.633 cannot send list of active checks to "172.*.*.174": host [MC28-100] not monitored26115:20190718:103628.673 cannot send list of active checks to "172.*.*.127": host [MC12-060] not monitored26118:20190718:103631.722 cannot send list of active checks to "172.*.*.139": host [DC1] not monitored26114:20190718:103638.044 cannot send list of active checks to "172.*.*.198": host [MC21-260] not monitored26103:20190718:103640.703 cannot send list of active checks to "172.*.*.114": host [MC27-160] not monitored26109:20190718:103642.627 cannot send list of active checks to "172.*.*.152": host [MC12-150] not monitored26103:20190718:103643.755 cannot send list of active checks to "172.*.*.119": host [MC28-010] not monitored26099:20190718:103646.143 cannot send list of active checks to "172.*.*.66": host [DC6] not monitored26118:20190718:103652.378 cannot send list of active checks to "172.*.*.126": host [MC22-230] not monitored26115:20190718:103653.551 cannot send list of active checks to "172.*.*.109": host [MC22-010] not monitored26104:20190718:103653.964 cannot send list of active checks to "172.*.*.74": host [MC21-010] not monitored26116:20190718:103657.145 cannot send list of active checks to "172.*.*.101": host [AE1-04] not monitored26109:20190718:103705.211 cannot send list of active checks to "172.*.*.90": host [DC-BL-1-7] not monitored26104:20190718:103720.250 cannot send list of active checks to "172.*.*.106": host [AE2-OP05] not monitored26110:20190718:103722.668 cannot send list of active checks to "172.*.*.65": host [LPDC-010] not monitored26109:20190718:103739.544 cannot send list of active checks to "172.*.*.179": host [MC21-130] not monitored26104:20190718:103739.726 cannot send list of active checks to "172.*.*.196": host [MC11-080] not monitored26116:20190718:103742.790 cannot send list of active checks to "172.*.*.180": host [MC11-010] not monitored
为什么主机已停止监控,还会发送监控项呢?
经过测试发现,是日志信息描述有误,真正的原因是因为配置了”Zabbix客户端(主动式)“,客户端会定期向zabbix服务器发送监控数据,服务器发现agent发过来的监控数据所属的主机已不再被监控,所以报错了!
那么怎么处理呢?
方法1、把zabbix的接收数据端口关闭,例如这里是10051
[root@hostname ~]# firewall-cmd --zone=public --remove-port=10051/tcp --permanent
success
[root@hostname ~]# firewall-cmd --reload
success
方法2、把agent服务停止或卸载agent
这篇关于每日一记:zabbix禁用主机后报错cannot send list of active checks to *.*.*.*: host [*] not monitored的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!