Difference between revisions of "Extending log volume"
From Tech-Wiki
Line 4: | Line 4: | ||
'''METHOD # 1''' | '''METHOD # 1''' | ||
− | GAIA (requires restart services): | + | Using GAIA (requires restart services): |
> show volume logs | > show volume logs | ||
> set volume logs size newsize | > set volume logs size newsize |
Revision as of 17:19, 15 August 2017
METHOD # 1
Using GAIA (requires restart services):
> show volume logs > set volume logs size newsize
METHOD # 2
Get the current available size and logical volume name using:
# vgdisplay # lvdisplay
Increase the size of this logical volume using: (if the volume has already grown using all the space in the new disk, this is not required)
# lvextend -L +100G /dev/vg_splat/lv_log
In addition, it's required to increase the file system in this logical volume as well:
# resize2fs /dev/vg_splat/lv_log
Check the new current size used again size using:
# vgdisplay # lvdisplay