raid:mdadm:check_the_raid_status
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
raid:mdadm:check_the_raid_status [2021/09/13 22:59] – created peter | raid:mdadm:check_the_raid_status [2021/09/14 08:41] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== RAID - mdadm - Check the RAID status ====== | ====== RAID - mdadm - Check the RAID status ====== | ||
+ | |||
+ | <code bash> | ||
+ | cat / | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | Personalities : [linear] [raid0] [raid1] [raid10] [raid6] [raid5] [raid4] [multipath] | ||
+ | md0 : active raid6 sdf3[0] sdd3[7] sdg3[6] sdh3[5] sdc3[4] sdb3[2] sda3[3] sde3[1] | ||
+ | 46824429696 blocks super 1.0 level 6, 64k chunk, algorithm 2 [8/8] [UUUUUUUU] | ||
+ | bitmap: 21/59 pages [84KB], 65536KB chunk | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** | ||
+ | |||
+ | * **Personalities**: | ||
+ | * This can be changed by either changing the raid modules or recompiling the kernel. | ||
+ | * Possible personalities include: [raid0] [raid1] [raid4] [raid5] [raid6] [linear] [multipath] [faulty] | ||
+ | * **[faulty]** is a diagnostic personality; | ||
+ | |||
+ | * **md0**: | ||
+ | * **active**: | ||
+ | * An inactive array is usually faulty. Stopped arrays are not visible here. | ||
+ | * **raid6**: | ||
+ | * **sdf3[0]** is device 0. | ||
+ | * **sdd3[7]** is device 7. | ||
+ | * **sdg3[6]** is device 6. | ||
+ | * **sdh3[5]** is device 5. | ||
+ | * **sdc3[4]** is device 4. | ||
+ | * **sdb3[2]** is device 2. | ||
+ | * **sda3[3]** is device 3. | ||
+ | * **sde3[1]** is device 1. | ||
+ | * The order in which the devices appear in this line means nothing. | ||
+ | * **46824429696 blocks**: | ||
+ | * **super 1.0**: | ||
+ | * **level 6**: Confirms this is a level 6 array. | ||
+ | * **64k chunk**: | ||
+ | * This is the size for ' | ||
+ | * The address space of the array is conceptually divided into chunks and consecutive chunks are striped onto neighboring devices. | ||
+ | * **algorithm 2**: Uses algorithm 2. | ||
+ | * **[8/ | ||
+ | * **[UUUUUUUU]**: | ||
+ | * **F**: | ||
+ | * **U**: | ||
+ | * **_**: | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | <code bash> | ||
+ | mdadm --detail /dev/md1 | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | /dev/md1: | ||
+ | Version : 1.0 | ||
+ | Creation Time : Tue Mar 6 17:46:54 2018 | ||
+ | Raid Level : raid6 | ||
+ | Array Size : 46824429696 (44655.26 GiB 47948.22 GB) | ||
+ | Used Dev Size : 7804071616 (7442.54 GiB 7991.37 GB) | ||
+ | Raid Devices : 8 | ||
+ | Total Devices : 8 | ||
+ | Persistence : Superblock is persistent | ||
+ | |||
+ | Intent Bitmap : Internal | ||
+ | |||
+ | Update Time : Tue Sep 14 00:02:02 2021 | ||
+ | State : active | ||
+ | | ||
+ | Working Devices : 8 | ||
+ | | ||
+ | Spare Devices : 0 | ||
+ | |||
+ | | ||
+ | Chunk Size : 64K | ||
+ | |||
+ | Name : 1 | ||
+ | UUID : 85d45e53: | ||
+ | | ||
+ | |||
+ | Number | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | ---- | ||
raid/mdadm/check_the_raid_status.1631573960.txt.gz · Last modified: 2021/09/13 22:59 by peter