Linux Software Raid Failure (failed disk removal and re-add)
Linux (pLinux & x86) 2015. 5. 15. 08:491. check software raid status
# cat /proc/mdstat
Personalities : [raid1]
md0 : active raid1 sdc1[1] sdb1[2](F)
346242536 blocks [2/1] [_U]
unused devices: <none>
2. remove failed disk from raid
# mdadm --manage /dev/md0 --remove /dev/sdb1
mdadm: hot removed /dev/sdb1
3. re-add failed disk to raid
# mdadm --manage /dev/md0 --add /dev/sdb1
mdadm: re-added /dev/sdb1
4. check rebuilding status
# cat /proc/mdstat
Personalities : [raid1]
md0 : active raid1 sdb1[2] sdc1[1]
346242536 blocks [2/1] [_U]
[>....................] recovery = 0.0% (13434/346242536) finish=145.6min speed=42192K/sec
'Linux (pLinux & x86)' 카테고리의 다른 글
Ubuntu Web based Terminal - wetty (0) | 2020.01.15 |
---|---|
Ubuntu disable automatic specific software update ex. postgresql (0) | 2020.01.15 |
Install MariaDB from Repositories (0) | 2015.02.25 |
install VirtualBox on LinuxMint(Ubuntu) (0) | 2015.01.14 |
ElementaryOS Luna 에서 kernel 3.14.1 (ubuntu 14.04) 으로 업그레이드 하기... (0) | 2014.12.17 |