# monit -V
This is monit version 5.1.1
Copyright (C) 2000-2010 by Tildeslash Ltd. All Rights Reserved.
# cat /etc/redhat-release
CentOS release 6.6 (Final)
monit
내부 설정 /etc/monit.conf
:
check system localhost
start program = "service zimbra start"
stop program = "service zimbra stop"
구문 오류의 원인은 무엇입니까?
답변1
Zimbra 전용 스탠자가 있어야 합니다. 구문이 모두 잘못되었습니다.
읽기구성 예Monit 문서의 섹션.
당신은 다음과 같은 것을 원할 것입니다 :
check process zimbra
with pidfile "/var/run/zimbra.pid"
start program = "/sbin/service zimbra start"
stop program = "/sbin/service zimbra stop"