[root@localhost /]# mdadm -D /dev/md0 /dev/md0: Version : 1.2 Creation Time : Wed Aug 3 15:52:10 2022 Raid Level : raid10 Array Size : 20953088 (19.98 GiB 21.46 GB) Used Dev Size : 10476544 (9.99 GiB 10.73 GB) Raid Devices : 4 Total Devices : 4 Persistence : Superblock is persistent
Update Time : Wed Aug 3 17:59:25 2022 State : clean Active Devices : 4 Working Devices : 4 Failed Devices : 0 Spare Devices : 0
Layout : near=2 Chunk Size : 512K
Consistency Policy : resync
Name : localhost.localdomain:0 (local to host localhost.localdomain) UUID : 9db711f3:9c55a474:2a7846c3:7f74896e Events : 19
Number Major Minor RaidDevice State 0 8 16 0 active sync set-A /dev/sdb 1 8 32 1 active sync set-B /dev/sdc 2 8 48 2 active sync set-A /dev/sdd 3 8 64 3 active sync set-B /dev/sde
[root@localhost mnt]# mdadm -D /dev/md0 /dev/md0: Version : 1.2 Creation Time : Wed Aug 3 15:52:10 2022 Raid Level : raid10 Array Size : 20953088 (19.98 GiB 21.46 GB) Used Dev Size : 10476544 (9.99 GiB 10.73 GB) Raid Devices : 4 Total Devices : 4 Persistence : Superblock is persistent
Update Time : Wed Aug 3 18:28:03 2022 State : clean, degraded Active Devices : 3 Working Devices : 3 Failed Devices : 1 Spare Devices : 0
Layout : near=2 Chunk Size : 512K
Consistency Policy : resync
Name : localhost.localdomain:0 (local to host localhost.localdomain) UUID : 9db711f3:9c55a474:2a7846c3:7f74896e Events : 21
Number Major Minor RaidDevice State 0 8 16 0 active sync set-A /dev/sdb 1 8 32 1 active sync set-B /dev/sdc - 0 0 2 removed 3 8 64 3 active sync set-B /dev/sde
2 8 48 - faulty /dev/sdd
我们看到Failded Devices:1正在运行的设备为3个。
bash
1 2 3
[root@localhost mnt]# cd /mnt [root@localhost mnt]# ls test1.txt test2.txt test3.txt test4.txt test5.txt test6.txt
我们可以发现,即使挂掉一个硬盘,也不会影响整个raid10的使用
添加硬盘
我们再将剔除的硬盘添加回设备
bash
1
mdadm /dev/md0 -a /dev/sdd
执行演示
bash
1 2
[root@localhost /]# mdadm /dev/md0 -a /dev/sdd mdadm: Cannot open /dev/sdd: Device or resource busy
Last login: Wed Aug 3 18:11:08 2022 from 192.168.41.1 [root@localhost ~]# mdadm /dev/md0 -a /dev/sdd mdadm: added /dev/sdd [root@localhost ~]# mdadm -D /dev/md0 /dev/md0: Version : 1.2 Creation Time : Wed Aug 3 15:52:10 2022 Raid Level : raid10 Array Size : 20953088 (19.98 GiB 21.46 GB) Used Dev Size : 10476544 (9.99 GiB 10.73 GB) Raid Devices : 4 Total Devices : 4 Persistence : Superblock is persistent
Update Time : Wed Aug 3 18:37:59 2022 State : clean Active Devices : 4 Working Devices : 4 Failed Devices : 0 Spare Devices : 0
Layout : near=2 Chunk Size : 512K
Consistency Policy : resync
Name : localhost.localdomain:0 (local to host localhost.localdomain) UUID : 9db711f3:9c55a474:2a7846c3:7f74896e Events : 44
Number Major Minor RaidDevice State 0 8 16 0 active sync set-A /dev/sdb 1 8 32 1 active sync set-B /dev/sdc 4 8 48 2 active sync set-A /dev/sdd 3 8 64 3 active sync set-B /dev/sde
[root@localhost ~]# mdadm -D /dev/md0 /dev/md0: Version : 1.2 Creation Time : Wed Aug 3 15:52:10 2022 Raid Level : raid10 Array Size : 20953088 (19.98 GiB 21.46 GB) Used Dev Size : 10476544 (9.99 GiB 10.73 GB) Raid Devices : 4 Total Devices : 4 Persistence : Superblock is persistent
Update Time : Wed Aug 3 18:55:10 2022 State : clean Active Devices : 4 Working Devices : 4 Failed Devices : 0 Spare Devices : 0
Layout : near=2 Chunk Size : 512K
Consistency Policy : resync
Name : localhost.localdomain:0 (local to host localhost.localdomain) UUID : 9db711f3:9c55a474:2a7846c3:7f74896e Events : 44
Number Major Minor RaidDevice State 0 8 16 0 active sync set-A /dev/sdb 1 8 32 1 active sync set-B /dev/sdc 4 8 48 2 active sync set-A /dev/sdd 3 8 64 3 active sync set-B /dev/sde
... Rebuild Status : 72% complete ... Number Major Minor RaidDevice State 3 8 64 0 spare rebuilding /dev/sde 1 8 32 1 active sync /dev/sdc 4 8 48 2 active sync /dev/sdd
[root@localhost /]# pvdisplay --- Physical volume --- PV Name /dev/sdb VG Name vg1 PV Size 10.00 GiB / not usable 4.00 MiB Allocatable yes PE Size 4.00 MiB Total PE 2559 Free PE 2559 Allocated PE 0 PV UUID saQbwU-1cnv-uVVx-j32n-7y6U-v88e-hA5eXr
--- Physical volume --- PV Name /dev/sdc VG Name vg1 PV Size 10.00 GiB / not usable 4.00 MiB Allocatable yes PE Size 4.00 MiB Total PE 2559 Free PE 2559 Allocated PE 0 PV UUID o27ac2-2uPj-XuV8-6lMc-c5Ds-86Zc-AC3RcD
--- Physical volume --- PV Name /dev/sda2 VG Name centos PV Size <19.00 GiB / not usable 3.00 MiB Allocatable yes (but full) PE Size 4.00 MiB Total PE 4863 Free PE 0 Allocated PE 4863 PV UUID LYVzwm-oAOF-Uxwx-m6tO-Ocrx-D64J-wvpb3G
[root@localhost /]# vgdisplay --- Volume group --- VG Name vg1 System ID Format lvm2 Metadata Areas 2 Metadata Sequence No 1 VG Access read/write VG Status resizable MAX LV 0 Cur LV 0 Open LV 0 Max PV 0 Cur PV 2 Act PV 2 VG Size 19.99 GiB PE Size 4.00 MiB Total PE 5118 Alloc PE / Size 0 / 0 Free PE / Size 5118 / 19.99 GiB VG UUID ccw34M-26uf-aL32-YgUj-X88K-5LtL-9RDhJN
--- Volume group --- VG Name centos System ID Format lvm2 Metadata Areas 1 Metadata Sequence No 3 VG Access read/write VG Status resizable MAX LV 0 Cur LV 2 Open LV 2 Max PV 0 Cur PV 1 Act PV 1 VG Size <19.00 GiB PE Size 4.00 MiB Total PE 4863 Alloc PE / Size 4863 / <19.00 GiB Free PE / Size 0 / 0 VG UUID 1yoKAw-PbS4-y8er-9cpG-28Pw-5wve-wIRRBO
--- Logical volume --- LV Path /dev/vg1/lv1 LV Name lv1 VG Name vg1 LV UUID 9WNut4-1KvY-LdnV-flQ9-Dk26-UGJw-RscNUw LV Write Access read/write LV Creation host, time localhost.localdomain, 2022-08-03 21:25:28 +0800 LV Status available # open 1 LV Size <10.49 GiB Current LE 2685 Segments 2 Allocation inherit Read ahead sectors auto - currently set to 8192 Block device 253:2