美文网首页
逻辑卷扩容

逻辑卷扩容

作者: 与狼共舞666 | 来源:发表于2021-07-29 21:49 被阅读0次

    用克隆镜像的方式安装了操作系统后,手动调整硬件中硬盘大小,后续如何操作

    1.当前文件系统显示

    [root@hadoop01 ~]# df -hT
    文件系统                类型      容量  已用  可用 已用% 挂载点
    devtmpfs                devtmpfs  7.9G     0  7.9G    0% /dev
    tmpfs                   tmpfs     7.9G     0  7.9G    0% /dev/shm
    tmpfs                   tmpfs     7.9G  8.5M  7.9G    1% /run
    tmpfs                   tmpfs     7.9G     0  7.9G    0% /sys/fs/cgroup
    /dev/mapper/centos-root xfs        29G  4.8G   25G   17% /
    /dev/sda1               xfs      1014M  137M  878M   14% /boot
    tmpfs                   tmpfs     1.6G     0  1.6G    0% /run/user/0
    

    2.fdisk -l 查看扩容后的磁盘大小,很显然是100G

    [root@hadoop01 ~]# fdisk -l
    
    磁盘 /dev/sda:107.4 GB, 107374182400 字节,209715200 个扇区
    Units = 扇区 of 1 * 512 = 512 bytes
    扇区大小(逻辑/物理):512 字节 / 512 字节
    I/O 大小(最小/最佳):512 字节 / 512 字节
    磁盘标签类型:dos
    磁盘标识符:0x000b3283
    
       设备 Boot      Start         End      Blocks   Id  System
    /dev/sda1   *        2048     2099199     1048576   83  Linux
    /dev/sda2         2099200    67108863    32504832   8e  Linux LVM
    
    磁盘 /dev/mapper/centos-root:31.1 GB, 31130124288 字节,60801024 个扇区
    Units = 扇区 of 1 * 512 = 512 bytes
    扇区大小(逻辑/物理):512 字节 / 512 字节
    I/O 大小(最小/最佳):512 字节 / 512 字节
    
    
    磁盘 /dev/mapper/centos-swap:2147 MB, 2147483648 字节,4194304 个扇区
    Units = 扇区 of 1 * 512 = 512 bytes
    扇区大小(逻辑/物理):512 字节 / 512 字节
    I/O 大小(最小/最佳):512 字节 / 512 字节
    

    3.将扩容出的容量新建一个分区加以利用,由于这里我的根目录是逻辑卷管理的,直接将新划出的空间加到对应卷组(vgdata),然后刷新文件系统即可。

    [root@hadoop01 ~]# fdisk /dev/sda
    欢迎使用 fdisk (util-linux 2.23.2)。
    
    更改将停留在内存中,直到您决定将更改写入磁盘。
    使用写入命令前请三思。
    
    
    命令(输入 m 获取帮助):m
    命令操作
       a   toggle a bootable flag
       b   edit bsd disklabel
       c   toggle the dos compatibility flag
       d   delete a partition
       g   create a new empty GPT partition table
       G   create an IRIX (SGI) partition table
       l   list known partition types
       m   print this menu
       n   add a new partition
       o   create a new empty DOS partition table
       p   print the partition table
       q   quit without saving changes
       s   create a new empty Sun disklabel
       t   change a partition's system id
       u   change display/entry units
       v   verify the partition table
       w   write table to disk and exit
       x   extra functionality (experts only)
    
    命令(输入 m 获取帮助):n
    Partition type:
       p   primary (2 primary, 0 extended, 2 free)
       e   extended
    Select (default p): p
    分区号 (3,4,默认 3):
    起始 扇区 (67108864-209715199,默认为 67108864):
    将使用默认值 67108864
    Last 扇区, +扇区 or +size{K,M,G} (67108864-209715199,默认为 209715199):
    将使用默认值 209715199
    分区 3 已设置为 Linux 类型,大小设为 68 GiB
    
    命令(输入 m 获取帮助):w
    The partition table has been altered!
    
    Calling ioctl() to re-read partition table.
    
    WARNING: Re-reading the partition table failed with error 16: 设备或资源忙.
    The kernel still uses the old table. The new table will be used at
    the next reboot or after you run partprobe(8) or kpartx(8)
    正在同步磁盘。
    [root@hadoop01 ~]# partprobe --h
    Usage: partprobe [OPTION] [DEVICE]...
    Inform the operating system about partition table changes.
    
      -d, --dry-run    do not actually inform the operating system
      -s, --summary    print a summary of contents
      -h, --help       display this help and exit
      -v, --version    output version information and exit
    
    When no DEVICE is given, probe all partitions.
    
    Report bugs to <bug-parted@gnu.org>.
    [root@hadoop01 ~]# partprobe /dev/sda
    

    4.对新分区进行格式化

    [root@hadoop01 ~]# mkfs.xfs /dev/sda3
    Discarding blocks...Done.
    meta-data=/dev/sda3              isize=512    agcount=4, agsize=4456448 blks
             =                       sectsz=512   attr=2, projid32bit=1
             =                       crc=1        finobt=0, sparse=0
    data     =                       bsize=4096   blocks=17825792, imaxpct=25
             =                       sunit=0      swidth=0 blks
    naming   =version 2              bsize=4096   ascii-ci=0 ftype=1
    log      =internal log           bsize=4096   blocks=8704, version=2
             =                       sectsz=512   sunit=0 blks, lazy-count=1
    realtime =none                   extsz=4096   blocks=0, rtextents=0
    

    5.创建pv,加入卷组,执行扩容,最后刷新文件系统,可以根据df -hT 查看要扩容的文件系统的位置 ,这是是/dev/mapper/centos-root

    [root@hadoop01 ~]# pvcreate /dev/sda3
    WARNING: xfs signature detected on /dev/sda3 at offset 0. Wipe it? [y/n]: y
      Wiping xfs signature on /dev/sda3.
      Physical volume "/dev/sda3" successfully created.
    [root@hadoop01 ~]# vgextend --h
      vgextend - Add physical volumes to a volume group
    
      vgextend VG PV ...
        [ -A|--autobackup y|n ]
        [ -f|--force ]
        [ -Z|--zero y|n ]
        [ -M|--metadatatype lvm2|lvm1 ]
        [    --labelsector Number ]
        [    --metadatasize Size[m|UNIT] ]
        [    --pvmetadatacopies 0|1|2 ]
        [    --metadataignore y|n ]
        [    --dataalignment Size[k|UNIT] ]
        [    --dataalignmentoffset Size[k|UNIT] ]
        [    --reportformat basic|json ]
        [    --restoremissing ]
        [ COMMON_OPTIONS ]
    
      Common options for lvm:
        [ -d|--debug ]
        [ -h|--help ]
        [ -q|--quiet ]
        [ -v|--verbose ]
        [ -y|--yes ]
        [ -t|--test ]
        [    --commandprofile String ]
        [    --config String ]
        [    --driverloaded y|n ]
        [    --lockopt String ]
        [    --longhelp ]
        [    --profile String ]
        [    --version ]
    
      Use --longhelp to show all options and advanced commands.
    [root@hadoop01 ~]# vgextend centos /dev/sda3
      Volume group "centos" successfully extended
    [root@hadoop01 ~]# vgs
      VG     #PV #LV #SN Attr   VSize  VFree 
      centos   2   2   0 wz--n- 98.99g 68.00g
    [root@hadoop01 ~]# df -hT
    文件系统                类型      容量  已用  可用 已用% 挂载点
    devtmpfs                devtmpfs  7.9G     0  7.9G    0% /dev
    tmpfs                   tmpfs     7.9G     0  7.9G    0% /dev/shm
    tmpfs                   tmpfs     7.9G  8.5M  7.9G    1% /run
    tmpfs                   tmpfs     7.9G     0  7.9G    0% /sys/fs/cgroup
    /dev/mapper/centos-root xfs        29G  4.8G   25G   17% /
    /dev/sda1               xfs      1014M  137M  878M   14% /boot
    tmpfs                   tmpfs     1.6G     0  1.6G    0% /run/user/0
    [root@hadoop01 ~]# lvextend -l +100%free /dev/mapper/centos-root
      Size of logical volume centos/root changed from 28.99 GiB (7422 extents) to 96.99 GiB (24830 extents).
      Logical volume centos/root successfully resized.
    [root@hadoop01 ~]# df -hT
    文件系统                类型      容量  已用  可用 已用% 挂载点
    devtmpfs                devtmpfs  7.9G     0  7.9G    0% /dev
    tmpfs                   tmpfs     7.9G     0  7.9G    0% /dev/shm
    tmpfs                   tmpfs     7.9G  8.6M  7.9G    1% /run
    tmpfs                   tmpfs     7.9G     0  7.9G    0% /sys/fs/cgroup
    /dev/mapper/centos-root xfs        29G  4.8G   25G   17% /
    /dev/sda1               xfs      1014M  137M  878M   14% /boot
    tmpfs                   tmpfs     1.6G     0  1.6G    0% /run/user/0
    [root@hadoop01 ~]# xfs_growfs /dev/mapper/centos-root
    meta-data=/dev/mapper/centos-root isize=512    agcount=4, agsize=1900032 blks
             =                       sectsz=512   attr=2, projid32bit=1
             =                       crc=1        finobt=0 spinodes=0
    data     =                       bsize=4096   blocks=7600128, imaxpct=25
             =                       sunit=0      swidth=0 blks
    naming   =version 2              bsize=4096   ascii-ci=0 ftype=1
    log      =internal               bsize=4096   blocks=3711, version=2
             =                       sectsz=512   sunit=0 blks, lazy-count=1
    realtime =none                   extsz=4096   blocks=0, rtextents=0
    data blocks changed from 7600128 to 25425920
    [root@hadoop01 ~]# df -hT
    文件系统                类型      容量  已用  可用 已用% 挂载点
    devtmpfs                devtmpfs  7.9G     0  7.9G    0% /dev
    tmpfs                   tmpfs     7.9G     0  7.9G    0% /dev/shm
    tmpfs                   tmpfs     7.9G  8.5M  7.9G    1% /run
    tmpfs                   tmpfs     7.9G     0  7.9G    0% /sys/fs/cgroup
    /dev/mapper/centos-root xfs        97G  4.8G   93G    5% /
    /dev/sda1               xfs      1014M  137M  878M   14% /boot
    tmpfs                   tmpfs     1.6G     0  1.6G    0% /run/user/0
    

    **最后看到根目录成功扩容到93G

    相关文章

      网友评论

          本文标题:逻辑卷扩容

          本文链接:https://www.haomeiwen.com/subject/ihvfvltx.html