LVM: Reduce an existing Volume Group by removing one of its disks

LVM: Reduce an existing Volume Group by removing one of its disks

# Tested on RHEL 5, 6 & 7

VG=testvg

# Check disks owned by volume group

vgdisplay -v $VG | grep "PV Name"
   PV Name               /dev/sde1
   PV Name               /dev/sde2
   PV Name               /dev/sde3
   PV Name               /dev/sde4    <---

# Remove desired disk from VG (Verify first disk is not in use)

DISK=/dev/sde4

pvdisplay $DISK | egrep "Total|Free"
   Total PE              129          <--- Total Physical Extents
   Free PE               129          <--- Free Physical Extents

# Disk is not being used (no PE in use) so we can remove it from volume group

vgreduce $VG $DISK


# Check

vgdisplay -v $VG | grep "PV Name"
   PV Name               /dev/sde1
   PV Name               /dev/sde2
   PV Name               /dev/sde3



# We can remove ALL empty (no physical extents in use) disks from VG by running 'vgreduce'
# command with '-a' option:

vgreduce -a $VG
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
KONTO SFTP Z CHROOTEM Z UŻYCIEM OPENSSH-SERVER NA CENTOS/RHEL6
Viewed 2553 times since Fri, Nov 30, 2018
RHCS6: Clustered LVM
Viewed 2863 times since Sun, Jun 3, 2018
Using Kerberos security with Server for NFS
Viewed 11086 times since Wed, Jun 27, 2018
stunnel Securing telnet connections with stunnel
Viewed 2320 times since Sun, Dec 6, 2020
RHCS6: Basic operations on clustered services
Viewed 3382 times since Sun, Jun 3, 2018
RHCS: Install a two-node basic cluster
Viewed 10867 times since Sun, Jun 3, 2018
RHCS6: Debug and test multicast traffic between two hosts
Viewed 7606 times since Sun, Jun 3, 2018
Automatic YUM Updates with Yum-cron
Viewed 11330 times since Fri, Oct 26, 2018
YUM CRON Enabling automatic updates in Centos 7 and RHEL 7
Viewed 12698 times since Fri, Oct 26, 2018
IPTABLES linux
Viewed 17822 times since Sat, Jun 2, 2018