サーバー監視 · 3 min read · Oct 15, 2025

Debian Etch における munin と monit を使用したサーバー監視 - ページ 2

4 monit のインストールと設定

monit をインストールするには、次のようにします:

apt-get install monit

次に、/etc/monit/monitrc を編集する必要があります。デフォルトの /etc/monit/monitrc には多くの例が含まれており、http://www.tildeslash.com/monit/doc/examples.php でさらに設定例を見つけることができます。しかし、私の場合は proftpd、sshd、mysql、apache、postfix を監視したいので、ポート 2812 で monit ウェブインターフェースを有効にし、ユーザー名 admin とパスワード test でウェブインターフェースにログインし、root@localhost にメールアラートを送信するようにしたいので、私のファイルは次のようになります:

cp /etc/monit/monitrc /etc/monit/monitrc_orig  
cat /dev/null > /etc/monit/monitrc  
vi /etc/monit/monitrc

| set daemon 60 set logfile syslog facility log_daemon set mailserver localhost set mail-format { from: [email protected] } set alert root@localhost set httpd port 2812 and SSL ENABLE PEMFILE /var/certs/monit.pem allow admin:test check process proftpd with pidfile /var/run/proftpd.pid start program = "/etc/init.d/proftpd start" stop program = "/etc/init.d/proftpd stop" if failed port 21 protocol ftp then restart if 5 restarts within 5 cycles then timeout check process sshd with pidfile /var/run/sshd.pid start program "/etc/init.d/ssh start" stop program "/etc/init.d/ssh stop" if failed port 22 protocol ssh then restart if 5 restarts within 5 cycles then timeout check process mysql with pidfile /var/run/mysqld/mysqld.pid group database start program = "/etc/init.d/mysql start" stop program = "/etc/init.d/mysql stop" if failed host 127.0.0.1 port 3306 then restart if 5 restarts within 5 cycles then timeout check process apache with pidfile /var/run/apache2.pid group www start program = "/etc/init.d/apache2 start" stop program = "/etc/init.d/apache2 stop" if failed host www.example.com 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 check process postfix with pidfile /var/spool/postfix/pid/master.pid group mail start program = "/etc/init.d/postfix start" stop program = "/etc/init.d/postfix stop" if failed port 25 protocol smtp then restart if 5 restarts within 5 cycles then timeout |

(サーバー上に実際に存在するプロセスのみを確認するようにしてください - そうしないと monit は起動しません。つまり、Postfix を監視するように monit に指示しても、システムに Postfix がインストールされていない場合、monit は起動しません。)

設定ファイルはかなり自己説明的です; オプションについて不明な点がある場合は、monit ドキュメントを参照してください: http://www.tildeslash.com/monit/doc/manual.php

monit 設定の apache 部分には次のような内容があります:

| if failed host www.example.com port 80 protocol http and request "/monit/token" then restart |

これは、monit が www.example.com のポート 80 に接続し、/monit/token というファイルにアクセスしようとすることを意味します。これは /var/www/www.example.com/web/monit/token であり、私たちのウェブサイトのドキュメントルートは /var/www/www.example.com/web です。monit が成功しない場合、Apache が実行されていないことを意味し、monit はそれを再起動します。次に、/var/www/www.example.com/web/monit/token というファイルを作成し、そこにランダムな文字列を書き込みます:

mkdir /var/www/www.example.com/web/monit  
echo "hello" > /var/www/www.example.com/web/monit/token

次に、SSL 暗号化された monit ウェブインターフェースに必要な pem 証明書 (/var/certs/monit.pem) を作成します:

mkdir /var/certs  
cd /var/certs

証明書を作成するために OpenSSL 設定ファイルが必要です。それは次のようになります:

vi /var/certs/monit.cnf

| # create RSA certs - Server RANDFILE = ./openssl.rnd [ req ] default_bits = 1024 encrypt_key = yes distinguished_name = req_dn x509_extensions = cert_type [ req_dn ] countryName = Country Name (2 letter code) countryName_default = MO stateOrProvinceName = State or Province Name (full name) stateOrProvinceName_default = Monitoria localityName = Locality Name (eg, city) localityName_default = Monittown organizationName = Organization Name (eg, company) organizationName_default = Monit Inc. organizationalUnitName = Organizational Unit Name (eg, section) organizationalUnitName_default = Dept. of Monitoring Technologies commonName = Common Name (FQDN of your server) commonName_default = server.monit.mo emailAddress = Email Address emailAddress_default = [email protected] [ cert_type ] nsCertType = server |

次に、次のようにして証明書を作成します:

openssl req -new -x509 -days 365 -nodes -config ./monit.cnf -out /var/certs/monit.pem -keyout /var/certs/monit.pem
openssl gendh 512 >> /var/certs/monit.pem
openssl x509 -subject -dates -fingerprint -noout -in /var/certs/monit.pem
chmod 700 /var/certs/monit.pem

その後、/etc/default/monit を編集して monit デーモンを有効にします。startup を 1 に変更し、CHECK_INTERVALS を monit がシステムをチェックする間隔(秒単位)に設定します。私は 60(秒)を選択したので、私のファイルは次のようになります:

vi /etc/default/monit

| # Defaults for monit initscript # sourced by /etc/init.d/monit # installed at /etc/default/monit by maintainer scripts # Fredrik Steen <[email protected]> # You must set this variable to for monit to start startup=1 # To change the intervals which monit should run uncomment # and change this variable. CHECK_INTERVALS=60 |

最後に、monit を起動できます:

/etc/init.d/monit start

ブラウザを https://www.example.com:2812/ に向けてください(ポート 2812 がファイアウォールでブロックされていないことを確認してください)、admin と test でログインすると、monit ウェブインターフェースが表示されるはずです。次のように見えるはずです:

(メイン画面)

(Apache ステータスページ)

/etc/monit/monitrc の設定に応じて、monit はサービスが失敗した場合にそれらを再起動し、サービスのプロセス ID が変更された場合に通知メールを送信します。

楽しんでください!

5 リンク

Share: X/Twitter LinkedIn

新しい投稿を受信箱で受け取る

スパムはありません。いつでも購読を解除できます。