Назад | Перейти на главную страницу

Сервис Monit Webmin не активируется

Я написал сценарий в интерфейсе 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

Не могли бы вы изучить это и сообщить мне, могу ли я считать услугу правильной или нет?

Немного отличается от моего:

   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

может быть "запуск программы", а не только "запуск" ??

Мой /etc/monit.d/webmin.monit.conf

Обратите внимание, что эти каталоги относятся к CentOS (5.8, i686 / 32 бит) с Webmin 1.580. Меняйте согласно вашей системе и, как всегда, YMMV.

check process webmin with pidfile /var/webmin/miniserv.pid 
   group webmin
   start program = "/etc/init.d/webmin start"
   stop  program = "/etc/init.d/webmin stop"
   if failed host localhost port 10000 then restart
   if failed host localhost port 10000 then restart
   if 5 restarts within 5 cycles then timeout
   if 5 restarts within 5 cycles then alert

check file webmin_rc with path /etc/init.d/webmin
   group webmin
   if failed checksum then unmonitor
   if failed permission 755 then unmonitor
   if failed uid root then unmonitor
   if failed gid root then unmonitor