El problema
Al intentar crear un volumen lógico, lvcreate falla con el error "El volumen "test_vg/lvol0" no está activo localmente" aunque el grupo de volúmenes está activo, con un resultado de error como el siguiente:
# lvcreate -L 4G test_vg Volume "test_vg/lvol0" is not active locally. Aborting. Failed to wipe start of new LV.
La causa raíz
La “lista_de_volumen ” está comentado en el archivo lvm.conf y el 'grupo de volúmenes' no se agregó a la lista de volúmenes.
– El volumen físico y el grupo de volúmenes se crearon correctamente:
# pvcreate /dev/sdc1 Physical volume "/dev/sdc1" successfully created
# vgcreate test_vg /dev/sdc1 Volume group "test_vg" successfully created
– Se modifica el ‘volume_list’ y no se agregó ningún grupo de volúmenes:
# cat /etc/lvm/lvm.conf| grep -i "volume_list" ... # volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ] volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ] ...
– PV y VG son visibles:
# 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
Error al crear el volumen lógico y después de la activación de VG manualmente:
# 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.
La solución
Aproveche la copia de seguridad de lvm.conf y comente "#" en la línea "volume_list" en /etc/lvm/lvm.conf.
# less /etc/lvm/lvm.conf | grep -i "volume_list" ... # volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ] ...
O agregue el grupo de volumen a volume_list.
# less /etc/lvm/lvm.conf|grep -i "volume_list" volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*", "Volume Group Name" ]
Intente ejecutar el comando 'lvcreate':
# lvcreate -L 4G test_vg Logical volume "lvol0" created.