为ESX上的CentOS添加新硬盘

撰写于 2012年9月29日 修改于 2021年3月11日 分类 建站相关 标签 Linux

一台运行在ESX上的CentOS服务器磁盘不够,现需要为其增加硬盘空间。计划新增加一个虚拟硬盘,并使用LVM进行卷管理,挂载到/store。

1、在ESX中增加一块新硬盘

在ESX中找到该虚拟机,在“Edit Setting”中,为其添加一块新硬盘,并记住其“Virtual Device Node”,如“SCSI(0:1)”。

Add Disk to VM on ESX

2、在CentOS中发现新硬盘

使用如下的命令,可以在虚拟机中发现这块新增加的硬盘:

1
echo "scsi add-single-device 0 0 1 0" > /proc/scsi/scsi

之后,可以通过fdisk -l看到新增加的硬盘,类似如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Disk /dev/sda: 7516 MB, 7516192768 bytes
255 heads, 63 sectors/track, 913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 913 7229250 5 Extended
/dev/sda5 14 770 6080571 83 Linux
/dev/sda6 771 913 1148616 82 Linux swap / Solaris

Disk /dev/sdb: 21.4 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Disk /dev/sdb doesn't contain a valid partition table

3、使用LVM管理新硬盘

这台机器之前并不是使用LVM进行磁盘管理,为了方便,对这个新增加的硬盘采用LVM进行卷管理。先创建一个PV:

1
2
3
pvcreate /dev/sdb

Physical volume "/dev/sdb" successfully created

再建立VG:

1
2
vgcreate vg0 /dev/sdb
Volume group "vg0" successfully created

创建LV,要注意这里的大小,大小要比添加的实际磁盘小一些,在虚拟机中添加的是 20G ,这里设置为 19G:

1
2
3
4
5
lvcreate -L  19GB -n data vg0
// 如果超过容量,则会显示类似提示
Volume group "vg0" has insufficient free space (5119 extents): 5120 required.
// 正确提示
Logical volume "data" created.

4、格式化与挂载

将这个新增加的卷格式化:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
mkfs.ext3  /dev/vg0/data

mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
1245184 inodes, 4980736 blocks
249036 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4294967296
152 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000

Allocating group tables: done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information:
done

再创建挂载点:

1
mkdir /store

挂载:

1
mount /dev/vg0/data /store

此时,再使用 fdisk -l 便可以看到已经成挂载的新磁盘。

最后,设置开机后自动挂载,编辑 /etc/fstab 文件,在最末尾添加如下一行:

1
/dev/vg0/data           /store                  ext3    defaults        0 0

现在就可以通过df -lh查看到新的分区信息了。

PS:许久不wordpress,连想个登录地址都想了半天,真正动笔后,发现写起来也没有那么艰难,不过这篇大概只能叫记。

Site by Stiekel using Hexo & Random
© 2010 - 2023

Hide