LVM Logical Volume Geometry Size Problem: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
# 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.
## <tt>'''# echo '- - -' > /sys/class/scsi_host/<host#>/scan'''</tt>
# Rescan all SCSI block devices associated with the volume group.
# Rescan all SCSI block devices associated with the volume group.
## <tt>'''# echo 1 > /sys/block/<block device>/device/rescan'''</tt>
## <tt>'''# echo 1 > /sys/block/<block device>/device/rescan'''</tt>

Revision as of 13:45, 11 December 2015

Error Messages Observed

These 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)

Fix Procedure

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

Further Reading