RAID rebuild limitations

RAID rebuild limitations

Q: I have a degraded RAID with multiple failed drives. I have replaced all of the drives, but when I try to rebuild on all of these drives the operation fails. Why is this happening?

A: MegaRAID controllers can only rebuild one drive at a time. You will need to start a rebuild on a single drive, and then wait for each rebuild to finish before starting the next one.

You can check the status of a rebuild with the following commands:

MegaCli
# MegaCli64 -PDRbld -ShowProg -aALL

Storcli
# storcli64 /cx/ex/sx show rebuild

    • Related Articles

    • Disabling automatic rebuild

      Q: Can I disable the automatic rebuild behavior? A: Yes, you can disable automatic rebuild and copyback operations. This is useful for when you want to schedule rebuild behavior, as a rebuild will consume significant controller resources and possibly ...
    • Clearing RAID metadata

      Usage: Disks that were previously in use by a RAID controller will often contain metadata that identifies them as being part of a RAID. The default behavior for the CentOS/RHEL Anaconda installer is to flag and ignore these types of disks in case ...
    • BIOS Setting for Bootable RAID configurations

      When using RAID as an OS Volume, it's important to ensure that all volumes are used for Boot. Certain RAID configurations will require that any drive within the RAID be available as a Boot volume. While UNIX and Windows installers may correctly setup ...
    • Install Windows Server 2008/2012 over an Existing RAID Array

      How to install Windows Server on an existing RAID array greater than 2TB in size Why is this a problem? When installing Windows on UEFI-based PC's with RAID arrays you must partition your hard drives using GPT. Traditional MBR-type drives are limited ...
    • MDADM - Common Commands

      1. Create a new RAID array Create (mdadm —create) is used to create a new array: 1 mdadm --create --verbose /dev/md0 --level=1 /dev/sda1 /dev/sdb2 or using the compact notation: 1 mdadm -Cv /dev/md0 -l1 -n2 /dev/sd[ab]1 2. /etc/mdadm.conf ...