安装完VXVM3.0.4后,重启到系统,查看vxconfigd进程是否起来:
# ps -ef |grep vxconfigd
root 347 342 0 10:19:17 pts/1 0:00 grep vxconfigd
经查,vxconfigd进程没有起来,要完成后续操作,就必须确保vxconfigd进程跟vxdctl进程是可用的。HP官方论坛有推荐方法如下:
To fire up the daemon if it is not running:
#vxconfigd
If the daemon is hung you can try:
# vxconfigd -k
If the daemon is up and running;
To display the current status(mode) of vxconfigd:
# vxdctl mode
To enable:
# vxdctl enable
尝试过这样的方法,不行。下面推荐一种比较简单直观的方法(创建rootdg):
# vxconfigd -m disable
# vxdctl init
# vxdctl init rootdg
# vxdg init rootdg
# vxdctl add disk c0t1d0s0 type=simple(这里以c0t1d0s0为例)
# vxdisk -f init c0t1d0s0 type=simple
# vxdg adddisk c0t1d0s0
# vxdctl enable
# ps -ef |grep vxconfigd
root 350 1 0 10:19:43 ? 0:00 vxconfigd
root 373 342 0 10:42:33 pts/1 0:00 grep vxconfigd
# vxdg list
NAME STATE ID
rootdg enabled 1199758890.1025.rootdg
# vxdisk list
DEVICE TYPE DISK GROUP STATUS
c0t0d0s2 sliced - - error
c0t1d0s0 simple c0t1d0s0 rootdg online
c0t1d0s2 sliced - - error
c0t2d0s2 sliced - - error
c0t3d0s2 sliced - - error
c1t4d0s2 sliced - - error
c1t5d0s2 sliced - - error
c1t6d0s2 sliced - - error
c1t7d0s2 sliced - - error
NOTE:这样做了之后,如重启后vxconfigd跟vxdctl没有启动,需要手工执行vxconfigd -m disable以及vxdctl enable来驱动这两个进程,之后才能看到vxdg跟vxdisk的信息。
阅读(2228) | 评论(0) | 转发(0) |