1753481 Members
4613 Online
108794 Solutions
New Discussion юеВ

Re: Cluster config

 
Sachin Kumbla
Frequent Advisor

Cluster config

Hi,

I needed to add a new volume group to my cluster.
Is it possible to add a new vg online or i require downtime for the same.

Rgds.,
Sachin Kumbla
5 REPLIES 5
Johnson Punniyalingam
Honored Contributor

Re: Cluster config

>>I needed to add a new volume group to my cluster.
Is it possible to add a new vg online or i require downtime for the same<<<

http://forums11.itrc.hp.com/service/forums/questionanswer.do?admit=109447626+1266322960351+28353475&threadId=1344833
Problems are common to all, but attitude makes the difference
Jupinder Bedi
Respected Contributor

Re: Cluster config

Above link is perfect link for you question.

All things excellent are as difficult as they are rare
Viktor Balogh
Honored Contributor

Re: Cluster config

>Is it possible to add a new vg online or i require downtime for the same.

No, downtime isn't necessary.
Shortly:

# ioscan -fnC disk; insf -C disk
# pvcreate /dev/rdsk/cXtYdZ
# mkdir /dev/newvg
# mknod /dev/newvg/group c 64 0xNEWMINOR

--> where NEWMINOR is a free minor number, look at the output of the following command and select the next free minor number

# ll /dev/*/group | sort -k 6

# vgcreate /dev/newvg /dev/dsk/cXtYdZ
****
Unix operates with beer.
Sp4admin
Trusted Contributor

Re: Cluster config

I have used the link that Johnson provided and it work for me. I suggest you take a look.

sp,
Sachin Kumbla
Frequent Advisor

Re: Cluster config

Thanks all