Results 1 to 9 of 9

Thread: RAID 5 Recovery Procedure

  1. #1
    Join Date
    Apr 2008
    Location
    Puerto Rico
    Beans
    49
    Distro
    Ubuntu 11.04 Natty Narwhal

    Question RAID 5 Recovery Procedure

    Ok first of all all of this is an assumption so I know what to expect when a RAID 5 Array that I have actually degrades and I have to recover it and I don't have to spend countless hours desperately looking for answers, so here it goes.

    Assuming I have a 3 Disk RAID 5 Array set up, what would the correct procedure to recover from 1 disk failing and the array getting degraded?

    So far this is what I understand from a couple hours of research:
    1. Fail the drive from the array and remove it using mdadm.
    2. Then insert the spare
    3. ???
    4. Add it to the array

    The middle part gets a big ambiguous, do I need to do anything with the spare drive at hand, any formating or special commands that I need to run on it.

    Like I said I want to have a clear picture before this actually happens and I start to go insane looking for answers.

    Thanks in advance!

    BTW. This would all be on a Ubuntu Server 11.04 Install, the RAID was set up with the installer and there is no LVM on the RAID, just formated with ext4 on top.

  2. #2
    Join Date
    Jul 2010
    Location
    Michigan, USA
    Beans
    2,136
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: RAID 5 Recovery Procedure

    I normally use fdisk or parted to add a partition to the disk (I like to use disk partitions for mdadm rather than raw disks, but that's not a requirement).

    Also, you don't even have to fail the disk from mdadm. Often the disk has completely died, so you power off the box, put in the replacement, partition it, and add it to the array. mdadm will automatically resync after that.

  3. #3
    Join Date
    Apr 2008
    Location
    Puerto Rico
    Beans
    49
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: RAID 5 Recovery Procedure

    Thanks,

    So basically just partition it with ect4 and plug it in?

    Sounds easy enough thanks for your help.

    Sorry about the late response.

  4. #4
    Join Date
    Jul 2010
    Location
    Michigan, USA
    Beans
    2,136
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: RAID 5 Recovery Procedure

    Quote Originally Posted by masterkoppa View Post
    Thanks,

    So basically just partition it with ect4 and plug it in?

    Sounds easy enough thanks for your help.

    Sorry about the late response.
    I'm not sure what you mean by ect4, but I assume you mean ext4. That would be putting a filesystem on the disk, and you don't want to do that before you add it to the array. You just use fdisk or parted and create a partition that takes up the disk, and set it as a Linux partition (83 in fdisk). Then, add it to the array.

  5. #5
    Join Date
    Apr 2006
    Beans
    417

    Re: RAID 5 Recovery Procedure

    I agree, the steps would be:
    1. Identify failed drive.
    2. Shutdown and replace failed drive
    3. Properly partition new drive and reboot
    4. Confirm RAID rebuilding (cat /proc/mdstat)
    extra step: If possible wipe drive, and run manufacturers diagnostic tool.
    drive maybe still usable if it just had a few bad sectors and passes test. If so you can keep it as spare or re-purpose it. If not RMA or recycle it about $0.15 worth of Aluminum in a hard drive.


    I have experience with mdadm. I guess it might allow for regular partition type or even no partition, but chances are the installer setup used Raid partition Type or Type df, instead of standard Linux partition or type 83. So look at the other drives partitions and match how they are setup, except /dev/sda probably has an extra /boot partition.

  6. #6
    Join Date
    Apr 2008
    Location
    Puerto Rico
    Beans
    49
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: RAID 5 Recovery Procedure

    Perfect, thank you both for your responses. Ill try to contribute to the wiki to make things clearer as there is no part on rebuilding a array of any kind.

  7. #7
    Join Date
    Nov 2006
    Location
    Radomlje, Slovenia
    Beans
    Hidden!
    Distro
    Kubuntu 10.04 Lucid Lynx

    Re: RAID 5 Recovery Procedure

    It works perfectly good with computer turned on. I had my disk failed and replaced after 5 days (praying that another disk won't fail in between) on live iscsi SAN server.

    After new disk came, I inserted it into server (Supermicro storage server) and:
    fdisk -l # to determine which device is assigned to new disk
    fdisk /dev/sdg # to create partition for raid
    mdadm /dev/md1 -a /dev/sdg1 # to add new drive to array /dev/md1
    cat /proc/mdstat # to see how array rebuilding is progressing

    by
    TheR

  8. #8
    Join Date
    Dec 2008
    Beans
    5

    Exclamation Re: RAID 5 Recovery Procedure

    >> 3. Properly partition new drive and reboot

    sorry, how could I properly partition a new drive ?

    I am running Ubuntu 12.04 server on HP DL380 G7,
    a disk of my RAID 5 had broken, I replace a new one
    (on the fly, just like what I did on RHEL)

    but it didn't auto rebuild the new one to disk array, even I reboot my server.
    how come ?

  9. #9
    Join Date
    Jul 2010
    Location
    Michigan, USA
    Beans
    2,136
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: RAID 5 Recovery Procedure

    You need to partition the new disk like the old disks where. What's the output of this command?

    Code:
    fdisk -l
    after doing that, you need to add the new disk to your array to get mdadm to use it. In this example, I'll add /dev/sdb1 to my existing array.
    Code:
    mdadm --manage /dev/md0 --add /dev/sdb1
    This will cause mdadm to resync, and add the new disk to the existing array.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •