0

我已经在 Solaris 10 上安装了 Veritas Volume Manager。我正在尝试从 vmdisks 创建卷。我已经创建了 vmdisks 并创建了具有 2 个 vm 磁盘的磁盘组。创建磁盘组后,我在每个 vm 磁盘中创建了近 3 个子磁盘(长度相同)。我已经从 6 个子磁盘创建了 3 个 plex,并使用以下命令使用 3 个 plex 创建了一个逻辑卷。

# vxmake -g testgrp -Uraid5 vol testvol1 plex=testplex,testplex-2,testplex-3

But when I run the below command, I could see the plex and volumes as disabled.

# vxprint -hg testgrp

由于卷为空,我尝试在启动卷之前运行以下命令。

# vxvol -g testgrp init clean testvol1

但在这一点上,我收到错误为“VxVM vxvol ERROR V-5-1-1654 keyword clean not Recognized for init operation”。

谁能帮我解决这个问题?提前致谢。

4

1 回答 1

0

如果 raid5 是您要创建的卷类型,我认为您可以使用以下命令:

vxassist -g testgrp make testvol1 layout=raid5 disk1,disk2,disk3,...

它将注意在给定磁盘组中的指定磁盘上创建适当的 plex 和子磁盘

于 2015-12-11T14:21:27.063 回答