Ubuntu – Howto setup Raid 5 with reiserfs
Some notes for me to follow next time I do it:
- Install mdadm and S.M.A.R.T. drive monitoring
# apt-get install mdadm smartmontools
- Enable smartd
# vi /etc/defaults/smartmontools
uncomment the “start_smartd=yes” line
- Edit smartd config and tell it what drives to monitor
# vi /etc/smartd.conf
add these lines to monitor each drive:
/dev/sdc -a -I 194 -W 4,45,55 -R 5 -m your@email.com
/dev/sdd -a -I 194 -W 4,45,55 -R 5 -m your@email.com
/dev/sde -a -I 194 -W 4,45,55 -R 5 -m your@email.com - Partition the 3 drives into “Linux Raid Autodetect” partitions:
# fdisk /dev/sdc
n (new)
p (primary)
1 (1st primary)
t (change type)
fd (set type to linux raid autodetect)
w (write changes and exit fdisk)
repeat for /dev/sdd and /dev/sde - Create the raid 5 array on the 3 drives:
# mdadm --create /dev/md0 --level=5 -n 3 /dev/sdc1 /dev/sdd1 /dev/sde1
- Build a new mdadm.conf file, first grab a description of all running raid instances:
# mdadm --detail --scan
Then
ARRAY /dev/md0 level=raid5 num-devices=3 metadata=00.90 spares=1
UUID=b144b150:b3b4ff34:2bababc5:c86c0f3a
copy and paste this into the /dev/mdadm/mdadm.conf file (remove old
default val) so the mdadm.conf file should look something like:DEVICE partitions
CREATE owner=root group=disk mode=0660 auto=yes
HOMEHOST <system>
MAILADDR your@email.com
ARRAY /dev/md0 level=raid5 num-devices=3 metadata=00.90 spares=1
UUID=b144b150:b3b4ff34:2bababc5:c86c0f3a (all on 1 line) - Format the new /dev/md0 device for LVM:
# fdisk /dev/md0
n (new)
p (primary)
1 (1st primary)
leave default type as linux
w (write changes and exit fdisk) - Check status of raid:
# mdadm --detail /dev/md0
this shows rebuild state.
- Make the file system on our new raid 5 partition.
# mkfs.reiserfs /dev/md0
- Make the dir where you want to mount array:
# mkdir /data
- Add entry to fstab
# vi /etc/fstab
/dev/md0 /data reiserfs auto 0 0 - Mount the new LVM raid 5 array:
# mount /data
- Check it worked:
# df -h
/dev/md0 2.7T 202M 2.6T 1% /data - Done.