Monit 当前正在执行一次。我可以在日志文件中看到它每个周期都会进行一次检查,但是,当我重新加载 monit 时,执行只会发生一次。
check host somehost with address example.com
# every "* 8-19 * * 1-5"
if failed
port 443
protocol https
and certificate valid > 1095 days
then exec "/var/local/bin/mtCert.sh"
答案1
这就是 monit 的设计运作方式。请参阅 https://mmonit.com/monit/documentation/monit.html
如果测试失败,程序只会执行一次。如果错误持续了给定的循环次数,则可以启用重复执行。
添加repeat every cycle
应该可以满足您的要求。请注意,警报也是如此。