1753906 Members
9095 Online
108810 Solutions
New Discussion юеВ

Re: Online Vgextend

 
SOLVED
Go to solution
HP UX Admin
Advisor

Online Vgextend


Hi,

Is it possible to extend the VG online.Already the VG has filesystems mounted in the system.

Pls consider both the cluster and standalone scenreo.

4 REPLIES 4
Torsten.
Acclaimed Contributor

Re: Online Vgextend

You can change a VG online only. Just do the "vgextend". In case of cluster, you need to transfer the configuration to the other nodes.

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
HP UX Admin
Advisor

Re: Online Vgextend

Hi Torsten,

Thanks for your valuable reply.

I understood the same,
Pls see the following procedure,and pls correct me if i am wrong.

In standalone sytem,

pvcreate /dev/rdsk/c7t9d0

vgextend vg02 /dev/dsk/c7t9d0 >>>>>> No need to unmount the filesystems of vg02

In cluster environment,

pvcreate /dev/rdsk/c7t9d0

vgextend vg02 /dev/dsk/c7t9d0

vgexport -vps -m /tmp/vg02.map vg02
copy the mapfile to the system 'B'.

In a system 'B'

vgexport vg02
vgimport -v -s -m /tmp/vg02.map vg02




Viktor Balogh
Honored Contributor
Solution

Re: Online Vgextend

Hi,

the above procedure is correct. Just a note to the clustered version: for doing the vgexport the vg should be deactivated, and thus, it should also be umounted on the passive node.

Regards,
Viktor
****
Unix operates with beer.
HP UX Admin
Advisor

Re: Online Vgextend

Thanks for all your valid answers.