Volume Management | |
---|---|
Subject: | |
How to create and remove drives#deactivate the volume groupvgchange -a n "volumeName"#now you actually remove the volume groupvgremove "volumeName"#how to create the volume grouppvscan #will give you the list of volumesvgcreate "volumeGroupName" /dev/driveName /dev/otherDriveNAme#options to create logical volumeshttp://www.centos.org/docs/5/html/Cluster_Logical_Volume_Manager/LV_create.html | |
2014-09-23 13:13:44 | gstlouis |
couple of notes because above is not super
| gstlouis |
2016-10-05 11:15:06 | |
recently had to do this took one storage drive from another server. When I tried to do pvcreate there wa an error Device /dev/vdb excluded by a filter I had to simply format the drive with mkfs.ext4 /dev/sdd ref: https://www.tecmint.com/manage-and-create-lvm-parition-using-vgcreate-lvcreate-and-lvextend/ Logical Volumes Management (also known as LVM), which have become a default for the installation of most (if not all) Linux distributions, have numerous advantages over traditional partitioning management. Perhaps the most distinguishing feature of LVM is that it allows logical divisions to be resized (reduced or increased) at will without much hassle. The structure of the LVM consists of:
In this article we will use three disks of 8 GB each (/dev/sdb, /dev/sdc, and /dev/sdd) to create three physical volumes. You can either create the PVs directly on top of the device, or partition it first. Although we have chosen to go with the first method, if you decide to go with the second (as explained in Part 4 – Create Partitions and File Systems in Linux of this series) make sure to configure each partition as type 8e. Creating Physical Volumes, Volume Groups, and Logical Volumes To create physical volumes on top of /dev/sdb, /dev/sdc, and /dev/sdd, do: # pvcreate /dev/sdb /dev/sdc /dev/sdd You can list the newly created PVs with: # pvs and get detailed information about each PV with: # pvdisplay /dev/sdX (where X is b, c, or d) If you omit /dev/sdX as parameter, you will get information about all the PVs. To create a volume group named vg00 using /dev/sdb and /dev/sdc (we will save /dev/sdd for later to illustrate the possibility of adding other devices to expand storage capacity when needed): # vgcreate vg00 /dev/sdb /dev/sdc As it was the case with physical volumes, you can also view information about this volume group by issuing: # vgdisplay vg00 Since vg00 is formed with two 8 GB disks, it will appear as a single 16 GB drive:
List LVM Volume Groups When it comes to creating logical volumes, the distribution of space must take into consideration both current and future needs. It is considered good practice to name each logical volume according to its intended use. For example, let’s create two LVs named vol_projects (10 GB) and vol_backups (remaining space), which we can use later to store project documentation and system backups, respectively. The -n option is used to indicate a name for the LV, whereas -L sets a fixed size and -l (lowercase L) is used to indicate a percentage of the remaining space in the container VG. # lvcreate -n vol_projects -L 10G vg00 # lvcreate -n vol_backups -l 100%FREE vg00 As before, you can view the list of LVs and basic information with: # lvs and detailed information with # lvdisplay To view information about a single LV, use lvdisplay with the VG and LV as parameters, as follows: # lvdisplay vg00/vol_projects
List Logical Volume In the image above we can see that the LVs were created as storage devices (refer to the LV Path line). Before each logical volume can be used, we need to create a filesystem on top of it. We’ll use ext4 as an example here since it allows us both to increase and reduce the size of each LV (as opposed to xfs that only allows to increase the size): # mkfs.ext4 /dev/vg00/vol_projects # mkfs.ext4 /dev/vg00/vol_backups In the next section we will explain how to resize logical volumes and add extra physical storage space when the need arises to do so. Resizing Logical Volumes and Extending Volume Groups Now picture the following scenario. You are starting to run out of space in vol_backups, while you have plenty of space available in vol_projects. Due to the nature of LVM, we can easily reduce the size of the latter (say 2.5 GB) and allocate it for the former, while resizing each filesystem at the same time. Fortunately, this is as easy as doing: # lvreduce -L -2.5G -r /dev/vg00/vol_projects # lvextend -l +100%FREE -r /dev/vg00/vol_backups
Resize Reduce Logical Volume and Volume Group It is important to include the minus (-) or plus (+) signs while resizing a logical volume. Otherwise, you’re setting a fixed size for the LV instead of resizing it. It can happen that you arrive at a point when resizing logical volumes cannot solve your storage needs anymore and you need to buy an extra storage device. Keeping it simple, you will need another disk. We are going to simulate this situation by adding the remaining PV from our initial setup (/dev/sdd). To add /dev/sdd to vg00, do # vgextend vg00 /dev/sdd If you run vgdisplay vg00 before and after the previous command, you will see the increase in the size of the VG: # vgdisplay vg00
Check Volume Group Disk Size Now you can use the newly added space to resize the existing LVs according to your needs, or to create additional ones as needed. Mounting Logical Volumes on Boot and on Demand Of course there would be no point in creating logical volumes if we are not going to actually use them! To better identify a logical volume we will need to find out what its UUID (a non-changing attribute that uniquely identifies a formatted storage device) is. To do that, use blkid followed by the path to each device: # blkid /dev/vg00/vol_projects # blkid /dev/vg00/vol_backups
Find Logical Volume UUID Create mount points for each LV: # mkdir /home/projects # mkdir /home/backups and insert the corresponding entries in /etc/fstab (make sure to use the UUIDs obtained before): UUID=b85df913-580f-461c-844f-546d8cde4646 /home/projects ext4 defaults 0 0 UUID=e1929239-5087-44b1-9396-53e09db6eb9e /home/backups ext4 defaults 0 0 Then save the changes and mount the LVs: # mount -a # mount | grep home
| gstlouis |
2019-09-16 11:10:34 | |