我已经用monit接口为Webmin服务编写了一个脚本。在无法重新启动服务的情况下,我可以执行进程。
check process webmin with pidfile /var/webmin/miniserv.pid
start = "/etc/init.d /webmin start"
stop = "/etc/init.d /webmin stop"
if failed host in1.miracletel.com port 10000 then restart
if 5 restarts within 5 cycles then timeout
#if changed pid 2 times within 2 cycles then alert请你调查一下,让我知道,我是否认为这项服务是正确的?
发布于 2010-11-23 11:36:18
看上去和我的有点不同:
root@wl183004:/home/marc.riera/scripts/admin/trunk/src/bin# cat ../etc/monit/conf.d/apache.conf
check process apache with pidfile /var/run/apache2.pid
group www-data
start program = "/etc/init.d/apache2 start"
stop program = "/etc/init.d/apache2 stop"
if failed host server.org port 80 protocol http
and request "/monit/token" then restart
if cpu is greater than 60% for 2 cycles then alert
if cpu > 80% for 5 cycles then restart
if totalmem > 500 MB for 5 cycles then restart
if children > 250 then restart
if loadavg(5min) greater than 10 for 8 cycles then stop
if 3 restarts within 5 cycles then timeout可能是“开始程序”而不是“开始”??
发布于 2012-04-19 21:36:00
我的/etc/monit.d/webmin.monit.conf
https://serverfault.com/questions/205097
复制相似问题