LVM Logical Volume Geometry Size Problem: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
Line 10: Line 10:
==Fix Procedure==
==Fix Procedure==
# Deactivate the volume group's logical volumes
# Deactivate the volume group's logical volumes
#: <tt>'''# vgchange -an <volume group>'''</tt>
#: <tt>'''# vgchange -an <volume_group>'''</tt>
# Rescan all SCSI Host Adapters.
# Rescan all SCSI Host Adapters.
#: <tt>'''# echo '- - -' > /sys/class/scsi_host/host<#>/scan'''</tt>
#: <tt>'''# echo '- - -' > /sys/class/scsi_host/host<#>/scan'''</tt>
Line 17: Line 17:
# Resize all physical volumes associated with the volume group
# Resize all physical volumes associated with the volume group
#: <tt>'''# pvscan'''</tt>
#: <tt>'''# pvscan'''</tt>
#: <tt>'''# pvresize /dev/<block device>'''</tt>
#: <tt>'''# pvresize /dev/<device>'''</tt>
# Activate the volume group's logical volumes
# Activate the volume group's logical volumes
#: <tt>'''# vgchange -ay <volume group>'''</tt>
#: <tt>'''# vgchange -ay <volume_group>'''</tt>


== Further Reading ==
== Further Reading ==


[[Category:Linux]]
[[Category:Linux]]

Revision as of 03:00, 28 January 2022

Error Messages Observed

The following messages appear in dmesg after an unsuccessful activation of a volume groups logical volumes

device-mapper: table: <major>:<minor>: <block device> too small for target: start=<sector>, len=<sector>, dev_size=<size>
kernel: EXT4-fs (dm-9): bad geometry: block count <number> exceeds size of device (<number> blocks)

The following messages appear after a vgimport on a volume group

device-mapper: resume ioctl on failed: Invalid argument
Unable to resume <volume group>-<logical volume> (253:23)

Fix Procedure

  1. Deactivate the volume group's logical volumes
    # vgchange -an <volume_group>
  2. Rescan all SCSI Host Adapters.
    # echo '- - -' > /sys/class/scsi_host/host<#>/scan
  3. Rescan all SCSI block devices associated with the volume group
    # echo 1 > /sys/block/<block device>/device/rescan
  4. Resize all physical volumes associated with the volume group
    # pvscan
    # pvresize /dev/<device>
  5. Activate the volume group's logical volumes
    # vgchange -ay <volume_group>

Further Reading