Das Problem
Beim Versuch, ein logisches Volume zu erstellen, schlägt lvcreate mit dem Fehler „Volume „test_vg/lvol0″ Is Not Active Locally“ fehl, obwohl die Volume-Gruppe aktiv ist, mit einer Fehlerausgabe wie der folgenden:
# lvcreate -L 4G test_vg Volume "test_vg/lvol0" is not active locally. Aborting. Failed to wipe start of new LV.
Die Hauptursache
Die „volume_list “ ist in der lvm.conf-Datei auskommentiert und „volume group“ wurde nicht zur volume_list hinzugefügt.
– Physischer Datenträger und Datenträgergruppe wurden erfolgreich erstellt:
# pvcreate /dev/sdc1 Physical volume "/dev/sdc1" successfully created
# vgcreate test_vg /dev/sdc1 Volume group "test_vg" successfully created
– Die „volume_list“ wurde geändert und es wurde keine Volume-Gruppe hinzugefügt:
# cat /etc/lvm/lvm.conf| grep -i "volume_list" ... # volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ] volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ] ...
– PV und VG sind sichtbar:
# vgdisplay |grep -i "test_vg" VG Name test_vg
# pvs PV VG Fmt Attr PSize PFree /dev/sda2 vg_6 lvm2 a--u 29.51g 0 /dev/sdb1 testvg lvm2 a--u 9.99g 7.99g /dev/sdc1 test_vg lvm2 a--u 4.99g 4.99g
Fehler beim Erstellen des logischen Volumes und nach der manuellen Aktivierung von VG:
# lvcreate -L 4G test_vg Volume "test_vg/lvol0" is not active locally. Aborting. Failed to wipe start of new LV.
# vgchange -ay test_vg 0 logical volume(s) in volume group "test_vg" now active
# lvcreate -L 4G test_vg Volume "test_vg/lvol0" is not active locally. Aborting. Failed to wipe start of new LV.
Die Lösung
Nutzen Sie die Sicherung von lvm.conf und kommentieren Sie „# “ die Zeile „volume_list“ in /etc/lvm/lvm.conf.
# less /etc/lvm/lvm.conf | grep -i "volume_list" ... # volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ] ...
Oder fügen Sie die Volumengruppe zu volume_list hinzu.
# less /etc/lvm/lvm.conf|grep -i "volume_list" volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*", "Volume Group Name" ]
Versuchen Sie, den Befehl „lvcreate“ auszuführen:
# lvcreate -L 4G test_vg Logical volume "lvol0" created.