In Ubuntu, how to get email notifications about (software) RAID problems?

7

1

I know getting email notifications should be possible, and perhaps even enabled by default... But how to make sure alerts are properly configured, and if, for any reason, they arent't, how to set them up?

(I think it's not enabled on my machine, because earlier when I had some disk problems it turned out one of the disks had been long been off the RAID, and the one remaining in it got broken...)

So, instead of periodically checking /proc/mdstat on my workstation to see that all RAID devices are nicely [UU]...

$ cat /proc/mdstat
Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] ...
md1 : active raid1 sda3[0] sdb3[1]
      195310144 blocks [2/2] [UU]

md0 : active raid1 sda1[0] sdb1[1]
      144448 blocks [2/2] [UU]

...how to set it up so that any irregularities are reported automatically by email? Specifically, I mean the situation that one disk "falls off" the RAID 1 array, for one reason or another, which shows up as something like [2/1] [U_] in /proc/mdstat. Also, instead of it sending email to local (root) user, can you configure an arbitrary email address?

I'm using Ubuntu 8.04 (aka Hardy). Tell me if I should add more details about the workstation or RAID setup.

Jonik

Posted 2009-07-23T10:48:55.877

Reputation: 5 352

You may want to note that this is software RAID. Solutions for hardware RAID may be substantially different. – ChrisInEdmonton – 2009-07-23T15:35:49.300

Good point; I tweaked the question title – Jonik – 2009-07-23T16:29:09.927

Answers

5

Add MAILADDR username@example.com to /etc/mdadm/mdadm.conf, then /etc/init.d/mdadm restart or it'll just start on next boot. There's also a munin plugin if you're running munin with email alerts.

TRS-80

Posted 2009-07-23T10:48:55.877

Reputation: 2 923

I recommend SSMTP for sending mails. Very easy to configure as exim4 and postfix are full MTAs and very complex to configure. – math – 2012-04-16T09:22:31.640

Thanks! Just curious - do you know of a quick and safe way to test if sending alert emails really works? – Jonik – 2009-07-23T14:21:38.150

At least marking a device in an array as "faulty" (mdadm /dev/md0 -f /dev/sdb1) did not trigger any email. Hmm, does the machine need to have some SMTP server / MTA running for outgoing mail to work? – Jonik – 2009-07-23T14:29:13.957

1Yes, you need a package that provides /usr/sbin/sendmail, ie any mail-transport-agent package like postfix, exim4 etc. – TRS-80 – 2009-07-23T14:57:15.897

3

I found a nice tip closely related to my question, and wanted to share it:

TomTheGeek: Pop up notification of software RAID problems in Ubuntu

It's not about email notifications, but as the blog post says, pop-up notifications (like in screenshot below) might be even better when we're talking about a workstation.

alt text

I'll summarise the main points here (in case that blog ever disappears). This uses notify-send, so you need to install notification-daemon package. Basically you add this in /etc/mdadm/mdadm.conf (along with MAILADDR):

# display local notification
PROGRAM /usr/sbin/mdadm-notify.sh

...and the mdadm-notify.sh script should be something like:

#!/bin/bash

#get dbus session
eval `dbus-launch --sh-syntax --exit-with-session`

#show alert
/usr/bin/notify-send -u critical -c device.error -i /usr/share/icons/Human/32x32/status/dialog-warning.png -t 0 "RAID Status" "<b>$2</b>: $1" -h int:x:1250 -h int:y:20

Jonik

Posted 2009-07-23T10:48:55.877

Reputation: 5 352

0

You could write a cron job to scrape the output above and send a mail if something is wrong.

Abhinav

Posted 2009-07-23T10:48:55.877

Reputation: 2 030

Is that really necessary? I have the impression that the RAID tools themselves can do email notifications... – Jonik – 2009-07-23T11:00:56.597