使用Linux Nagios检查Windows上次备份

时间:2015-11-29 16:28:29

标签: unix windows-server-2008-r2 nagios

如何从Unix系统检查Windows Server最新备份日期并通过Nagios进行监控?

基本上我想在最后一次备份超过一天之前抛出警报

我以为我可以使用check_file_age,但它没有用,而且可能是更好的选择。

谢谢。

1 个答案:

答案 0 :(得分:1)

您试图在Windows中监控哪个文件? 你在使用NSClient ++吗?

编辑:

如果您使用的是NSClient ++,则可以使用check_nt。试试这个:

define service{
use generic-service
host_name   servername
service_description     File changed
check_command   check_nt! FILEAGE -l "your_file_location"! -w 300 -c 600 
}

来源:https://support.nagios.com/forum/viewtopic.php?f=7&t=25956