我在 Centos 7 机器上运行 Nagios 3.5。该设置用于通过 NRPE(check_nrpe 命令)监视某些 Windows 机器。目前我正在使用“nsclient-full.ini”文件中的预配置“别名”命令。到目前为止一切正常。
我想使用“alias_updates”命令监视主机上 Windows 更新的状态。
; alias_updates - Alias for alias_updates.
alias_updates = check_updates -warning 0 -critical 0 ShowAll=long
这是定义所有外部脚本的部分:
; A list of scripts available to run from the CheckExternalScripts module.
[/settings/external scripts/scripts]
check_updates=C:\Program Files\NSClient++\scripts\check_updates.vbs
当然,我已经检查过我提供的路径中是否存在“check_updates.vbs”。毕竟,它与 NSClient++ 捆绑在一起。
我已启用外部脚本的执行:
; Check External Scripts - A simple wrapper to run external scripts and batch files.
CheckExternalScripts = 1
其他相关的配置选项(在我看来)是:
; Section for NRPE (NRPEServer.dll) (check_nrpe) protocol options.
[/settings/NRPE/server]
; COMMAND ARGUMENT PROCESSING
allow arguments = true
; COMMAND ALLOW NASTY META CHARS
allow nasty characters = false
; PORT NUMBER - Port to use for NRPE.
port = 5666
; Section for external scripts configuration options (CheckExternalScripts).
[/settings/external scripts]
; COMMAND ARGUMENT PROCESSING
allow arguments = true
; COMMAND ALLOW NASTY META CHARS
allow nasty characters = false
; SCRIPT DIRECTORY
script path =
; COMMAND TIMEOUT
timeout = 60
在 Nagios 服务器上,从命令提示符下,我正在尝试这个:
[root@mama365-account plugins]# ./check_nrpe -H 192.168.10.13 -c alias_updates
我得到的回应是这样的:
ExternalCommands: failed to create process (C:\Program Files\NSClient++\scripts\check_updates.vbs): it is not an exe file (check NSC.log for more info) - failed to lookup error code: 193( reson: 87)
我知道 NSClient 可以运行不可执行的插件 (*.exe),而只能运行脚本。这是一个VB脚本。此外,在 Nagios GUI 中与命令对应的框中也会显示相同的错误消息。
任何人都知道如何解决这个问题?阅读 NSClient++ 的文档只让我到目前为止......
更新 1:
我按照迈克尔·梅丁(Michael Medin)对这封信提供的说明进行操作。现在我的 'nsclient-full.ini' 看起来像这样:
; A list of wrappped scripts (ie. using the template mechanism)
[/settings/external scripts/wrapped scripts]
check_updates=scripts\check_updates.vbs
; VISUAL BASIC WRAPPING -
vbs=cscript.exe //T:30 //NoLogo %SCRIPT% %ARGS%
问题是,现在我遇到了另一个错误,这一次与 vb 脚本的执行有关:
C:Program FilesNSClient++scriptscheck_updates.vbs(15, 1) Microsoft VBScript runtime error: Class not defined: 'NagiosPlugin'
附带说明一下,看起来插件返回了“OK”,因为 Nagios 中的相应框是绿色的。
更新 2:
在 NSClient++ 论坛中搜索后,我发现有人遇到了同样的问题。原来我错过了一个'\':
check_updates=scripts\check_updates.vbs
应该:
check_updates=scripts\\check_updates.vbs
但我仍然无法让它工作。现在看来脚本的通信和执行正常,但是操作超时。如果我使用命令行中的“-t”选项将超时设置为 120 秒,则会收到以下错误消息:
CHECK_NRPE: Received 0 bytes from daemon. Check the remote server logs for error messages.
正如 krisFR 指出的那样,您需要在 vbs 文件前面加上 cscript.exe (和各种其他选项)。
Windows 中的脚本不像 unix 中的脚本那样工作,因此它们本身不能“运行”(ish)。因此,所有脚本都必须以它们的运行时为前缀。
理论上,这应该记录在这里:http ://docs.nsclient.org/howto/external_scripts.html#languages但我发现它丢失了,所以我会尽快更新它。
check_updates=cscript.exe //T:30 //NoLogo "scripts\\check_updates.vbs"
解决此问题的另一种方法是在 NSClient++ 中使用所谓的“包装”脚本,然后您可以定义“宏”来执行各种扩展:
更多细节可以在这里找到:http: //docs.nsclient.org/howto/external_scripts.html#wrapped-scripts