- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- When create a new group file for vg10, what should...
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
08-04-2002 06:00 AM
08-04-2002 06:00 AM
#mknod /dev/vg10/group c 64 0x0a0000
or ---
#mknod /dev/vg10/group c 64 0x100000
?
====================================
Regards by
Gerald
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2002 06:19 AM
08-04-2002 06:19 AM
Re: When create a new group file for vg10, what should I type for mknod?
Regards
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2002 06:19 AM
08-04-2002 06:19 AM
Re: When create a new group file for vg10, what should I type for mknod?
Correct me if I am wrong.
Regards,
Kenneth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2002 09:45 AM
08-04-2002 09:45 AM
Re: When create a new group file for vg10, what should I type for mknod?
vg00 = 0x000000
vg01 = 0x010000
...
vg09 = 0x090000
So all together 10 VGs. If "maxvgs" got increased to say 16, then ..
vg10 = 0x0a0000
vg11 = 0x0b0000
...
vg15 = 0x0f0000
So in your case if you've been following the VG creation in that order, it should be ..
# mknod /dev/vg10/group c 64 0x0a0000
but then again the rules are not rigid, as long as the minor numbers are unique you're okay. Find out what are the current used minor number ..
# ll /dev/vg*/group
If "0x0a0000" is not used, then go ahead and use that minor number (to stay consistent).if it's been used then you can "pick" any unused minor number.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2002 10:00 AM
08-04-2002 10:00 AM
SolutionIf you have two volume groups already called vg00 and vg01 and then for some reason you want to create vg10 but use the "standard" 0x0a0000 minor number then you still need to increase maxvg beyond 10 even though you would only have three volume groups.
I would regard 0x0a0000 as the "standard" mainly because I have come across disaster recovery sites that did not follow this and it caused extra work for me because all my informix link rebuild scripts wanted the "standard".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2002 10:10 AM
08-04-2002 10:10 AM
Re: When create a new group file for vg10, what should I type for mknod?
Once upon a time I tried to create vg35 with minor number 0x350000 (which is hex or base 16). I had a problem doing so because the kernel parameter maxvgs (which specifies how many volume groups can be configured) was set to 40 (which is specified in base 10, or decimal). Apparantly since 0x35 hex is 53 decimal (and obviously 53 is greater than 40), the system thought I was exceeding the allowed number of VGs (maxvgs). I was able to create the VG only when the minor number did not exceed maxvgs as expressed in hex.
Yes, I was told it is a good idea to create VGs as VGnn and specify the minor number as 0xnn0000. In fact, it really doesn't matter. Just be sure all your volume groups have a unique minor number for the group file.
Darrell