如何在 SunOS 中启用(格式化)磁盘然后将其添加到磁盘组?

如何在 SunOS 中启用(格式化)磁盘然后将其添加到磁盘组?
SERVER # vxdisk list
DEVICE       TYPE            DISK         GROUP        STATUS
c1t0d0s2     auto:none       -            -            online invalid
c1t1d0s2     auto:none       -            -            online invalid
san_vc0_0    auto:sliced     -            -            online
san_vc0_1    auto:sliced     -            -            online
san_vc0_2    auto:sliced     ldisk_64_200p  oraclep_dg1  online
san_vc0_3    auto:sliced     ldisk_64_101p  autosys_dg0  online
san_vc0_4    auto:sliced     ldisk_64_100p  autosys_dg0  online
san_vc0_5    auto            -            -            nolabel
san_vc0_6    auto            -            -            nolabel
san_vc1_0    auto:sliced     -            -            online
san_vc1_1    auto:sliced     -            -            online
san_vc1_2    auto:sliced     ldisk_64_200m  oraclep_dg1  online
san_vc1_3    auto:sliced     ldisk_64_101m  autosys_dg0  online
san_vc1_4    auto:sliced     ldisk_64_100m  autosys_dg0  online
san_vc1_5    auto            -            -            nolabel
san_vc1_6    auto            -            -            nolabel
SERVER # 

其他信息:

# vxdisk -s list
...
Disk:   san_vc1_6
type:   auto
flags:  nolabel private autoconfig
error:  Disk is not usable
guid:   -
udid:   AAA%5F2145%5F02006380d018XX00%5F60050768018E03406000000000000475
info:   
...

为什么?有新磁盘,但我无法将它们添加到磁盘组,因为:“磁盘不可用”。

san_vc1_5
san_vc1_6
san_vc0_5
san_vc0_6

如何启用这些新的 SAN 磁盘并将它们添加到卷组(vxdiskadm 对此很有用)
我缺少什么?我需要做什么才能使新磁盘看起来像:“auto:sliced”?

只要说是否需要任何信息...:\

更新:当我尝试格式化磁盘时,格式显示:“未找到磁盘”:\ - 问题可能是什么?是不是盘坏了??

答案1

您似乎正在该机器上使用 Veritas Volume Manager。因此,据我所知,您需要首先将 Sun 磁盘标签应用到新磁盘,然后将它们添加到 VxVM。

首先格式化每个磁盘并为其添加标签:

# format san_vc0_5
format> label
format> Proceed? yes

然后您应该能够初始化每个磁盘并通过以下方式将其添加到 Veritas:

# vxdisksetup -i <device> format=sliced

然后您可以通过以下方式将磁盘添加到您想要的磁盘组:

# vxdg -g <diskgroup> adddisk <diskname>=<device>

或者 vxdiskadm 应该可以工作。

注意:我没有任何 Solaris 系统或 VxVM 可供使用,因此语法可能有点不对劲。以下是我很久以前上传到 Scribd 的 VxVM 备忘单的链接,供您参考:http://www.scribd.com/doc/15691130/VxVM-Storage-Foundation-41-Commands

相关内容