4.3.2. 在群集中创建卷组
在群集环境中使用
vgcreate
命令创建卷组就如同在单一节点中创建卷组。
默认情况下,在所有可访问共享存储的计算机中都可看到 CLVM 在共享存储中创建的卷组。但有可能在使用带
-c n
选项的 vgcreate
命令创建的本地卷组,只能在群集的一个节点中看到。
当在群集环境中执行以下命令时,创建的卷组对执行该命令的节点来说是本地的。该命令创建一个名为
vg1
的卷组,其中包含物理卷 /dev/sdd1
和 /dev/sde1
。
vgcreate -c n vg1 /dev/sdd1 /dev/sde1
You can change whether an existing volume group is local or clustered with the
-c
option of the vgchange
command, which is described in 第 4.3.7 节 “修改卷组参数”.
您可以使用
vgs
命令查看现有卷组是否为群集卷组,如是则会显示 c
属性。以下命令显示卷组 VolGroup00
和 testvg1
的属性。在这个示例中,VolGroup00
不是群集的,而 testvg1
是群集的,如 Attr
标题下的 c
属性所示。
[root@doc-07]# vgs
VG #PV #LV #SN Attr VSize VFree
VolGroup00 1 2 0 wz--n- 19.88G 0
testvg1 1 1 0 wz--nc 46.00G 8.00M
For more information on the
vgs
command, see 第 4.3.4 节 “显示卷组”第 4.9 节 “为 LVM 自定义报告”, and the vgs
man page.