Il problema
Dopo che il sistema è stato avviato, md0 manca e tutti gli LV utilizzati sopra md0 non sono montati
# mount -a mount: special device /dev/mapper/vg_test-x0 does not exist mount: special device /dev/mapper/vg_test-y0 does not exist
# cat /etc/mdadm.conf ARRAY /dev/md0 level=raid5 num-devices=6 metadata=0.90 spares=1 UUID=73560e25:92fb30cb:1c74ff07:ca1df0f7
# cat /proc/mdstat Personalities : unused devices: [none]
Altri dati per mostrare che /dev/md0 è mancante:
# mdadm --detail /dev/md0 mdadm: cannot open /dev/md0: No such file or directory
md0 non è affatto visibile, /var/log/messages non contiene problemi di I/O sui dischi locali utilizzati da md0.
La soluzione
L'errore è dovuto a impostazioni errate in /etc/mdadm.conf . Segui i passaggi descritti di seguito per risolvere il problema:
1. Per prima cosa scansiona tutti i possibili eventi dei dispositivi md:
# mdadm --examine /dev/sd[a-z] | egrep 'Event|/dev/sd'
Oppure cerca tutti i dispositivi con informazioni dettagliate sull'UUID md raid
# mdadm --examine /dev/sd[a-z]
Il comando mdadm review proverà a controllare tutte le informazioni sui dischi disponibili e a verificare se fanno parte di un raid md.
Esempio di output:
# mdadm --examine /dev/sd[a-z] /dev/sdb: Magic : a92b4efc Version : 0.90.00 UUID : 08877d71:d7dc9c1b:16f3496b:a22042b7 Creation Time : Wed Aug 31 14:19:18 2016 Raid Level : raid5 Used Dev Size : 586061696 (558.91 GiB 600.13 GB) Array Size : 2930308480 (2794.56 GiB 3000.64 GB) Raid Devices : 6 Total Devices : 6 Preferred Minor : 0 Update Time : Wed Sep 21 11:33:48 2016 State : clean Active Devices : 6 Working Devices : 6 Failed Devices : 0 Spare Devices : 0 Checksum : 153be7ed - correct Events : 202 Layout : left-symmetric Chunk Size : 64K Number Major Minor RaidDevice State this 0 8 16 0 active sync /dev/sdb 0 0 8 16 0 active sync /dev/sdb 1 1 8 48 1 active sync /dev/sdd 2 2 8 64 2 active sync /dev/sde 3 3 8 80 3 active sync /dev/sdf 4 4 8 96 4 active sync /dev/sdg 5 5 8 112 5 active sync /dev/sdh
Quindi mdadm è in grado di trovare il dispositivo mdraid con l'UUID corretto di quel raid md0, l'UUID di md0 è:08877d71:d7dc9c1b:16f3496b:a22042b7
2. Confronta quell'UUID con quello all'interno di /etc/mdadm.conf:
# cat /etc/mdadm.conf ARRAY /dev/md0 level=raid5 num-devices=6 metadata=0.90 spares=1 UUID=73560e25:92fb30cb:1c74ff07:ca1df0f7
Entrambi gli UUID in realtà non corrispondono.
3. C'è la possibilità di montare manualmente mdraid fornendo ogni dispositivo come parte di md0 raid:
# mdadm --assemble /dev/md0 /dev/sdb /dev/sdd /dev/sde /dev/sdf /dev/sdg /dev/sdh mdadm: /dev/md0 has been tarted with 6 drives.
# ls -l /dev/md0 brw-r----- 1 root disk 9, 0 Sep 23 11:18 /dev/md0
# mdadm --detail /dev/md0 /dev/md0: Version : 0.90 Creation Time : Wed Aug 31 14:19:18 2016 Raid Level : raid5 Array Size : 2930308480 (2794.56 GiB 3000.64 GB) Used Dev Size : 586061696 (558.91 GiB 600.13 GB) Raid Devices : 6 Total Devices : 6 Preferred Minor : 0 Persistence : Superblock is persistent Update Time : Wed Sep 21 11:33:48 2016 State : clean Active Devices : 6 Working Devices : 6 Failed Devices : 0 Spare Devices : 0 Layout : left-symmetric Chunk Size : 64K UUID : 08877d71:d7dc9c1b:16f3496b:a22042b7 Events : 0.202 Number Major Minor RaidDevice State 0 8 16 0 active sync /dev/sdb 1 8 48 1 active sync /dev/sdd 2 8 64 2 active sync /dev/sde 3 8 80 3 active sync /dev/sdf 4 8 96 4 active sync /dev/sdg 5 8 112 5 active sync /dev/sdh
4. Ora md0 è visibile, cerca pv e vg:
# pvscan PV /dev/md0 VG vg_data lvm2 [2.73 TB / 546.56 GB free] Total: 1 [2.73 TB] / in use: 1 [2.73 TB] / in no VG: 0 [0 ]
# vgscan Reading all physical volumes. This may take a while... Found volume group "vg_data" using metadata type lvm2
5. Attiva il vg ora:
# vgchange -a y
6. Verifica se i LV sono ora attivi e visibili
# lvscan ACTIVE '/dev/vg_data/lvm-admin' [200.00 GB] inherit ACTIVE '/dev/vg_data/lvm-backup' [2.00 TB] inherit
7. Ora esegui il comando mount
# mount -a
8. Per correggere effettivamente l'UUID errato in mdadm.conf, eseguire il comando seguente:
– Crea un backup dell'attuale mdadm.conf
# cp /etc/mdadm.conf /etc/mdadm.conf.bak1
– Ora sostituisci il file di configurazione corrente con il comando seguente:
# mdadm --examine --scan > /etc/mdadm.conf
Il comando sopra aggiornerà /etc/mdadm.conf con la corretta stanza di configurazione del raid.