lvm:troubleshooting_lvm
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
lvm:troubleshooting_lvm [2016/07/07 09:47] – created peter | lvm:troubleshooting_lvm [2019/11/30 13:59] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== LVM - Troubleshooting LVM ====== | ||
- | |||
- | ===== Errors ===== | ||
- | |||
- | ==== Logical volume already exists in volume group ==== | ||
- | |||
- | You cannot create two logical volumes of the same name in the same volume group. | ||
- | |||
- | < | ||
- | Logical volume " | ||
- | </ | ||
- | |||
- | indicates that you are attempting to do so. | ||
- | |||
- | ==== Logical volume not found ==== | ||
- | |||
- | An error of the form: | ||
- | |||
- | < | ||
- | Logical volume foo not found in volume group vg01 | ||
- | </ | ||
- | |||
- | could indicate that: | ||
- | |||
- | * you have specified the wrong pathname for the logical volume, or | ||
- | * the logical volume that you intended to specify has been deleted, or | ||
- | * one or more physical volumes were not found during discovery (in which case the volume group will also be missing). | ||
- | |||
- | To establish what has happened you can request a list of logical volumes in the volume group: | ||
- | |||
- | <code bash> | ||
- | lvdisplay /dev/vg01 | ||
- | </ | ||
- | |||
- | then if necessary a list of volume groups known to the system: | ||
- | |||
- | <code bash> | ||
- | vgdisplay | ||
- | </ | ||
- | |||
- | and a list of physical volumes known to the system: | ||
- | |||
- | <code bash> | ||
- | pvdisplay | ||
- | </ | ||
- | |||
- | ==== Insufficient free extents in volume group ==== | ||
- | |||
- | An error of the form: | ||
- | |||
- | < | ||
- | Insufficient free extents (55211) in volume group vg01: 128000 required | ||
- | </ | ||
- | |||
- | or: | ||
- | |||
- | < | ||
- | Insufficient free space: 128000 extents needed, but only 55211 available | ||
- | </ | ||
- | |||
- | while attempting to create or extend a logical volume indicates that the volume group does not have enough free space to satisfy your request. | ||
- | |||
- | Your options are: | ||
- | |||
- | * to use a different volume group, if you have one with more space, or | ||
- | * to delete one or more existing logical volumes to free up space within the volume group, or | ||
- | * to add one or more physical volumes to the volume group to make it larger, or | ||
- | * to reduce the amount of storage space that you are requesting. | ||
- | |||
- | You can determine how much free space is available within a given volume group using the **vgdisplay** command: | ||
- | |||
- | <code bash> | ||
- | vgdisplay /dev/vg01 | ||
- | </ | ||
- | |||
- | which produces output of the form: | ||
- | |||
- | < | ||
- | --- Volume group --- | ||
- | VG Name vg01 | ||
- | System ID | ||
- | Format | ||
- | Metadata Areas 1 | ||
- | Metadata Sequence No 14 | ||
- | VG Access | ||
- | VG Status | ||
- | MAX LV 0 | ||
- | Cur LV 8 | ||
- | Open LV 4 | ||
- | Max PV 0 | ||
- | Cur PV 1 | ||
- | Act PV 1 | ||
- | VG Size 3.73 TB | ||
- | PE Size 4.00 MB | ||
- | Total PE 976811 | ||
- | Alloc PE / Size | ||
- | Free PE / Size 55211 / 215.67 GB | ||
- | VG UUID | ||
- | </ | ||
- | |||
- | The amount of free space is the second value given on the line labelled 'Free PE/ | ||
- | |||
- | ==== New size not larger than existing size ==== | ||
- | |||
- | An error of the form: | ||
- | |||
- | < | ||
- | New size given (1536 extents) not larger than existing size (2048 extents) | ||
- | Run `lvextend --help' | ||
- | </ | ||
- | |||
- | when running **lvextend** indicates that you requested a final size that was smaller than the current size of the volume. | ||
- | |||
- | If you really did mean to reduce the size of the volume then you should use **lvreduce** or **lvresize** instead. | ||
- | |||
- | ===== Warnings ===== | ||
- | |||
- | ==== Rounding up size to full physical extent ==== | ||
- | |||
- | LVM allocates storage in multiples of the physical extent size, which is 4MB by default. | ||
- | |||
- | < | ||
- | Rounding up size to full physical extent 256.00 MiB | ||
- | </ | ||
- | |||
- | This will not usually cause any significant harm beyond using slightly more space than intended. | ||
lvm/troubleshooting_lvm.1467884876.txt.gz · Last modified: 2020/07/15 09:30 (external edit)