1831950 Members
3045 Online
110034 Solutions
New Discussion

Re: Can't create vg10

 
SOLVED
Go to solution
Cindy Wolford
Frequent Advisor

Can't create vg10

HP 11i
L3000

I created vg00 thru vg09 fine.
I am trying to create vg10

I increased the kernel MAXVGS to 12 (because I want to create vg10 and vg11)

I keep getting stuck here:
# pvcreate -f /dev/rdsk/c4t8d0
Physical volume "/dev/rdsk/c4t8d0" has been successfully created.
# mkdir /dev/vg10
# mknod /dev/vg10/group c 64 0x100000
# vgcreate /dev/vg10 /dev/dsk/c4t8d0
vgcreate: Cannot open the control file "/dev/vg10/group":
No such device

I read that it has to do with MAXVGS and something about hex values....but I'm at a loss.

Can anyone tell me what I need to do? Do I need to increase MAXVGS more?

TIA
Cin
4 REPLIES 4
Steven E. Protter
Exalted Contributor

Re: Can't create vg10

Shalom,

Looks to me like this failed:

mknod /dev/vg10/group c 64 0x100000

After changing MAXVGS did you recompile your kernel and boot your system?

There may be a problem with the mknod command, so after running it please check this:
echo $?

If the return code is not zero that is the problem.

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
Jeff_Traigle
Honored Contributor
Solution

Re: Can't create vg10

Try it like this and see if it works:

mknod /dev/vg10/group c 64 0x0a0000
--
Jeff Traigle
Cindy Wolford
Frequent Advisor

Re: Can't create vg10

I just found the answer.....thank goodness for the internet (decimal to hex conversion)

Yup, I need to use letters now....

Thanks for the help and quick replies.

I'm closing this and assigning ponits.
Thanks!
Cindy Wolford
Frequent Advisor

Re: Can't create vg10

THANKS>