I've got two 600GB drives in a software RAID1 setup on a physical Debian server.
I want to be able to upgrade the capacity of the server by cloning the drives to a matching pair of 2TB drives. I can then wipe the 600GB drives and use them as storage or whatever.
What's the best way to go about this?
slave:~# mount
/dev/md0 on / type ext3 (rw,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
You should be able to replace the first drive, partition add to the array and let the raid resync. Then replace the second drive, allow it to resync, and then expand the raid and filesystem to take up the entire space. When you partition your new drives make it so they take up the all the space that you want want for the new layout.
man mdadm, resize2fs
remove a device from the array
add a device to the array
grow the array to take up the entire space allowed by the partitions
Grow the filesystem to take up the enitre space of the array
You should still make a backup. Just to be sure. If you want to practice and test, you might want to try this in a virtual machine first so you can feel confident.
Just in case someone googles this up, here is my experience with moving from 2x150Gb to 2x1Tb drives in mdadm RAID1 + LVM on top of it.
Assuming, we got 2 drives - small1, small2 in mdadm mirror (md0), and the new are big1 and big2. On top of them is LVM with volume group VG1 and logical volume LV1
ensure everything OK with current md:
Tell mdadm to fail one drive and remove it from md array:
Replace small1 drive with big one (either hotswapping, or powering the system down).
Make new partition on the big HDD of type FD (Linux RAID autodetect). Make it the size you want your new RAID to be. I prefer cfdisk, but this may vary:
Add the new disk (or, to be correct, your newly created partition, e.g. /dev/sda1):
Wait till the array is synced:
Repeat this with the other pair of drives. In the end you'll get two big disks in array.
Grow the array to maximum size allowed by component devices, wait till synced:
Now it's time to resize LVM. Note the --test option, it will simulate action, but would not change metadata (it's useful to see if there're any misconfiguration before actually resizing).
Resizing physical volume:
Resizing logical volume:
And finally, resizing ext3 FS:
With two 1Tb HDDs it took me about 20 hours (I've removed one disk from an array before messing with LVM and FS, so it was 3 syncs + array growing).
All was done on a production server, with no interruptions to services running.
But don't forget to BACKUP YOUR DATA before making any changes.
Assuming one of the disks being replaced is a boot disk, don't you need to worry about having GRUB on both disks before you start yanking disks out? (I am assuming the stuff GRUB goes looking for, in /boot, is mirrored onto both disks.)
I'm pretty sure I've stared at a not-quite-GRUB prompt when I didn't get this right...