1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

mdadmの通知設定

Posted at

mdadmでraid情報をメールで受け取る方法の覚書。

この記事
でpostfixを使いgmailでメールを送るよう設定しました、さらに
この記事
でmdstatを見てエラーが発生していたらメールを通知する設定を行いました。

でもそんなイレギュラーな方法ではなくてpostfixの設定が出来ていれば普通にmdadmの管理機能でメール通知が届くので、これを使うことにしました。
一日一通とかなら許容範囲ですし、正常に動作していることも分かりますしね。

というわけで
/etc/mdadm/mdadm.conf

MAILADDR user@hoge.com

とメールの宛先を追加して

/etc/cron.d/raid_chk
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name command to be executed
10 0 * * *      root  /sbin/mdadm --monitor --scan -1 --test

というファイルをcron.dの下に追加します。
以上で設定完了、指定した時間にメールが飛んできます。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?