How do I move a Linux software RAID to a new machine?
Solution 1:
You really kinda need the original mdadm.conf file. But, as you don't have it, you'll have to recreate it. First, before doing anything, read up on mdadm via its manual page. Why chance losing your data to a situation or command that you didn't have a grasp on?
That being said, this advice is at your own risk. You can easily lose all your data with the wrong commands. Before you run anything, double-check the ramifications of the command. I cannot be held responsible for data loss or other issues related to any actions you take - so double check everything.
You can try this:
mdadm --assemble --scan --verbose /dev/md{number} /dev/{disk1} /dev/{disk2} /dev/{disk3} /dev/{disk4}
This should give you some info to start working with, along with the ID. It will also create a new array device /dev/md{number}, from there you should be able to find any mounts. Do not use the --auto
option, the man page verbiage implies that under certain circumstances this may cause an overwrite of your array settings on the drives. This is probably not the case, and the page probably needs to be re-written for clarity, but why chance it?
If the array assembles correctly and everything is "normal", be sure to get your mdadm.conf written and stored in /etc
, so you'll have it at boot time. Include the new ID from the array in the file to help it along.
Solution 2:
Just wanted to add my full answer for Debian at least.
- Install the raid manager via -->
sudo apt-get install mdadm
Scan for the old raid disks via -->
sudo mdadm --assemble --scan
At this point, I like to check
BLKID
and mount the raid manually to confirm.blkid mount /dev/md0 /mnt
- Append Info to mdadm.conf via -->
mdadm --detail --scan >> /etc/mdadm/mdadm.conf
Update initramfs via -->
update-initramfs -u
Troubleshooting:
Make sure the output of mdadm --detail --scan
matches your /etc/mdadm/mdadm.conf
nano /etc/mdadm/mdadm.conf
ARRAY /dev/md/0 level=raid5 num-devices=3 metadata=00.90 UUID=a44a52e4:0211e47f:f15bce44:817d167c
Example FSTAB
/dev/md0 /mnt/mdadm ext4 defaults,nobootwait,nofail 0 2
https://unix.stackexchange.com/questions/23879/using-mdadm-examine-to-write-mdadm-conf/52935#52935
https://askubuntu.com/questions/729370/can-i-transfer-my-mdadm-software-raid-to-a-new-system-in-case-of-hardware-failur
How do I move a Linux software RAID to a new machine?