I have a RAID array that I cannot seem to mount after a power failure. The mount error says it cannot find the UUID even though it is to UUID reported by mdadm.
mdadm --examine --scan
ARRAY /dev/md/0 metadata=1.2 UUID=4a9ed4ce:505da073:afd780ed:3e5d5622 name=nas:0
fstab entry is:
UUID=4a9ed4ce:505da073:afd780ed:3e5d5622 /md0 ext4 defaults 0 0
Trying to mount the device:
mount /md0
mount: /md0: can't find UUID=4a9ed4ce:505da073:afd780ed:3e5d5622.
My mdadm.conf:
ARRAY /dev/md/nas:0 level=raid5 num-devices=6 metadata=1.2 name=nas:0 UUID=4a9ed4ce:505da073:afd780ed:3e5d5622
devices=/dev/sda1,/dev/sdb1,/dev/sdc1,/dev/sdd1,/dev/sde1,/dev/sdf1
Can someone help me figure this out? Thanks.
As an aside, I don't know if this is a Ubuntu thing but I find it odd the device is /dev/md/0 rather than /dev/md0.