- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- volume group creation
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2000 08:00 AM
12-29-2000 08:00 AM
volume group creation
" the command used to create volume groups /sbin/vgcreate, has failed.
the stderr output from the command is shown below. the volume group has not been created, cannot open the control file "/dev/vg18/group",
no such device. my specified disk has been initialized with pvcreate command, i have created other volume groups but "/dev/vg18/group. could it be that i have exceeded the number of VG per system,what is the maximum numbers of VGs.
Any help will be appreciated, thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2001 03:56 AM
01-18-2001 03:56 AM
Re: volume group creation
(In 10.20 is sure)
SAM->Kernel Configuration->Configurable parameters
But i think you didn't exceed this value.Before you create volume groups you should create a group file:
(For example)
1. mkdir /dev/vg09
2. mknod /dev/vg09 c 64 0x090000
(The 0x090000 number has the following format: 0xNN0000
The NN parameter is runs from
00 to maxvgs)
3. pvcreate /dev/rdsk/c1t1d0
4. pvcreate /dev/rdsk/c1t2d0
5. vgcreate /dev/vg09 /dev/rdsk/c1t1d0 /dev/rdsk/c1t2d0
Regards:
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2001 06:21 AM
01-18-2001 06:21 AM
Re: volume group creation
The procedure Pal described is correct, but don't forget that the major number(0xNN0000)
should be unique.
Read the man page for vgcreate, they have a example on how to create a VG.
Good Luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2001 09:54 AM
01-18-2001 09:54 AM
Re: volume group creation
The value of maxvgs is set to 10. I only have 2 volume groups on the system so I should be able to create 8 more. I tried to create a volume group number 20. It failed with a message similar to what you see. The number, not the count was higher than the parameter and it failed. I was able to create vg10 with no problem.
I do not see this behavior any longer. I assume it was fixed with a patch. I just suggest setting maxvgs much higher and not worry about it. There's really no penalty for having it set high.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2001 09:28 AM
02-15-2001 09:28 AM
Re: volume group creation
Max. Physical Volumes = 48
Max. Physical Extents = 10240 (40Gb disk)
MB per Physical Extent = 4
So if you need a larger disk, either reduce the number of physical volumes or enlarge the MB per Physical Extent.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2001 11:13 AM
02-15-2001 11:13 AM
Re: volume group creation
Lets say you have 20 VG's. The major number has a direct impact on the kernel parameter. For instance lets say you had only 2 VG for maxvgs in kernel parameter. What do you think you the major number could be?
Answer the only possible numbers the major number could be for maxvgs=2 is 0x00 0x01. Why? The VG's major number goes in hex order starting with 00. In your reply that you made the major number 20, whould mean that the maxvgs would have to equal 32 or greater.
Hope this expanation helps.