# 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"