Operating System - HP-UX
1832872 Members
2489 Online
110048 Solutions
New Discussion

Re: Creating a 1MB extend volume group

 
SOLVED
Go to solution
Donald C Nelson
Frequent Advisor

Creating a 1MB extend volume group

I have a customer who needs to create a four-17gb disk volume groups of 1MB extents. I have never create a 1mb extend on a VG before so when I use the command:

vgcreate -s 1 /dev/vg00 /dev/dsk/c?t?d? /dev/dsk/c?t?d?

...Creating volume group vg01...
vgcreate: Volume group "/dev/vg01" could not be created:
VGRA for the disk is too big for the specified parameters. Increase the
extent size or decrease max_PVs/max_LVs and try again.

I can't increase the extent sizes nor decrease the max_PV's/max LV's. Is there a way that I can increase the max number of physical extents (-e) in the command.
2 REPLIES 2
Steven E. Protter
Exalted Contributor
Solution

Re: Creating a 1MB extend volume group

Shalom Donald,

try the -p ## parameter

-p 10

This forever until vgcreate limits you to 10 physical volumes so pick a number that you can live with for a very long time.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Donald C Nelson
Frequent Advisor

Re: Creating a 1MB extend volume group

Thanks Steven

Don