LVM Remove a Physical Volume

From UNIX Systems Administration
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

AIX

Removal of a Physical Volume

  1. # diag
  2. Select: Task Selection
  3. Select: Hot Plug Task
  4. Select: SCSI and SCSI Raid Hot Plug Manager
  5. Select: Replace/Remove a Device Attached to an SCSI Hot Swap Enclosure Device
  6. Select: Slot # of the physical volume you wish to remove
  7. Follow the on-screen instructions to complete removal

RHEL7

Removal of a Physical Volume from LVM

  1. Ensure the physical volume is not being used
    # pvdisplay /dev/<physical_volume#>
  2. If physical volume contains any logical volumes, you will need to migrate the data off of the physical volume
    # pvmove /dev/<physical_volume#>
  3. If physical volume is empty remove it from the volume group
    # vgreduce <volume_group> /dev/<physical_volume#>
  4. Remove the physical volume from LVM
    # pvremove /dev/<physical_volume#>

Removal of the Physical Volume from the System

  1. Ensure all users are closed out of the device
  2. If the device is multipathed, note the multipath configuration for the device
    # multipath -l
  3. Flush the I/O of the device
    # blockdev --flushbufs /dev/<device>
  4. Remove any references to the device from /dev/disk/by-id
  5. Remove any references to the device from /dev/disk/by-path
  6. Remove any references to the device from /dev/disk/by-uuid
  7. Delete the device.
    # rm /dev/<device>
  8. Remove the device from the SCSI Subsystem
    # echo 1 > /sys/block/<device>/device/delete
  9. If the device is multipathed remove the configuration for the device
    # multipath -f <mpath>

Further Reading

  1. IBM pSeries and AIX Information Center
  2. RHEL7 Removing a Storage Device