码迷,mamicode.com
首页 > 其他好文 > 详细

如何扩展现有NFS存储空间容量

时间:2014-09-30 13:43:30      阅读:368      评论:0      收藏:0      [点我收藏+]

标签:kvm   云计算   rhev   rhevm   

How to extend a logical volume and its filesystem online in Red Hat Enterprise Linux?


问题

  • What is the procedure to grow an existing filesystem based on Logical Volume?

  • How can I extend my logical volume and the filesystem in the command line?

  • I have extended a logical volume using lvextend which shows the extension in volume group vgdisplay but df isn‘t reflecting the size, Am I missing something?

  • How do I grow an ext3/ext4 filesystem on lvm?

  • How do I increase my filesystem on fly, without unmounting the filesystem ?

  • We are using LVM for mounting the filesystem, how can we use the lvextend to extend the volume group and resize the filesystem?

  • What are the steps to extend a filesystem after a LUN capacity has been extended?

  • What is the procedure to increase the size of an LVM2 logical volume and resize its filesystem?

  • I need to expand a filesystem created on LVM partition, is the filesystem need to be unmounted when expanding it or can I resize it online?

决议

  • The followings are sample steps to extend a volume group, a logical volume, and a filesystem.

NOTE: Red Hat recommends that all critical data be backed up and verified before making any changes to the underlying storage as an unforeseen problem might occur.

1. Create a physical volume from a free disk or partition (e.g. /dev/sdc1 as a partition)

    # pvcreate /dev/sdc1

2. Extend the volume group (/dev/sdc1 is an existing physical volume path).

    # vgextend vgdata /dev/sdc1

3. Extend the logical volume (/dev/vgdata/lvdata is the existing logical volume path), which will be extended in 125 GB.

    # lvextend -L +125G /dev/vgdata/lvdata

4. Extend an ext2/3 filesystem on the logical volume.

    # resize2fs /dev/vgdata/lvdata

If the filesystem is ext4 with Red Hat Enterprise Linux 5, use resize4fs command instead of the resize2fs command.

5. If the filesystem is a GFS extend, see "How do I grow a GFS2 file-system on RHEL5?".

  • For more details, refer the tech brief How to Increase the Size of an LVM2 Logical Volume which walks through an example in which unpartitioned disk space is added to an existing volume group in order to extend a logical volume and the corresponding file system, while they are active.


本文出自 “神威新空间” 博客,请务必保留此出处http://abool.blog.51cto.com/8355508/1559653

如何扩展现有NFS存储空间容量

标签:kvm   云计算   rhev   rhevm   

原文地址:http://abool.blog.51cto.com/8355508/1559653

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!