linux – NRPE:无法读取输出

前端之家收集整理的这篇文章主要介绍了linux – NRPE:无法读取输出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试监控 MySQL数据库

[root@monitored.com ~]# su nagios -c /usr/lib/nagios/plugins/check_MysqL
Uptime: 18014 Threads: 1 Questions: 6 Slow queries: 0 Opens: 12 Flush tables: 1 Open tables: 6 Queries per second avg: 0.000

但我有意想不到的错误

[ec2-user@monitoring.com ~]$/usr/lib/nagios/plugins/check_nrpe -H monitored.com -c check_MysqL
NRPE: Unable to read output

怎么了?

解决方法

调试正在执行的命令没有返回任何有效输出的一个好方法是使用strace.例如,我在通过NRPE运行check_linux_raid命令时遇到问题.

运行strace -f -p< nrpe pid>,然后从运行nagios的系统手动执行命令(例如/usr/lib64 / nagios / plugins / check_nrpe -H remotename -c commandname -a arg1 arg2 …).

扫描strace的输出以查找错误,例如拒绝权限或可能发生的其他类似错误.例如,在我的情况下,selinux在从远程计算机运行时拒绝对文件的许可,即使该用户具有对该文件的本地访问权限.

原文链接:https://www.f2er.com/linux/398923.html

猜你在找的Linux相关文章