Come far funzionare di nuovo un dispositivo RAID inattivo?
Dopo l'avvio, il mio dispositivo RAID1 (/dev/md_d0
*) a volte va in qualche strano stato e non posso montarlo.
* Originariamente ho creato /dev/md0
ma in qualche modo si è trasformato in /dev/md_d0
.
# mount /opt
mount: wrong fs type, bad option, bad superblock on /dev/md_d0,
missing codepage or helper program, or other error
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
In some cases useful info is found in syslog - try
dmesg | tail or so
Il dispositivo RAID sembra essere inattivo in qualche modo:
# cat /proc/mdstat
Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5]
[raid4] [raid10]
md_d0 : inactive sda4[0](S)
241095104 blocks
# mdadm --detail /dev/md_d0
mdadm: md device /dev/md_d0 does not appear to be active.
La domanda è: come rendere il dispositivo nuovamente attivo (usando mdmadm
, presumo)?
(Altre volte va bene (attivo) dopo il boot, e posso montarlo manualmente senza problemi. Ma ancora non monta automaticamente anche se l'ho in /etc/fstab
:
/dev/md_d0 /opt ext4 defaults 0 0
Quindi una domanda bonus: **cosa dovrei fare per far montare automaticamente il dispositivo RAID a /opt
all'avvio? )
Questa è una workstation Ubuntu 9.10. Informazioni di base sulla mia configurazione RAID in questa domanda .
Edit : Il mio /etc/mdadm/mdadm.conf
si presenta così. Non ho mai toccato questo file, almeno a mano.
# by default, scan all partitions (/proc/partitions) for MD superblocks.
# alternatively, specify devices to scan, using wildcards if desired.
DEVICE partitions
# auto-create devices with Debian standard permissions
CREATE owner=root group=disk mode=0660 auto=yes
# automatically tag new arrays as belonging to the local system
HOMEHOST <system>
# instruct the monitoring daemon where to send mail alerts
MAILADDR <my mail address>
# definitions of existing MD arrays
# This file was auto-generated on Wed, 27 Jan 2010 17:14:36 +0200
In /proc/partitions
l'ultima voce è md_d0
almeno ora, dopo il riavvio, quando il dispositivo è di nuovo attivo. (Non sono sicuro se sarebbe lo stesso quando è inattivo.)
Risoluzione : come Jimmy Hedman ha suggerito , ho preso l'uscita di mdadm --examine --scan
:
ARRAY /dev/md0 level=raid1 num-devices=2 UUID=de8fbd92[...]
e l'ho aggiunto a /etc/mdadm/mdadm.conf
, che sembra aver risolto il problema principale. Dopo aver cambiato /etc/fstab
per usare di nuovo /dev/md0
(invece di /dev/md_d0
), anche il dispositivo RAID viene montato automaticamente!