- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Minor number of /dev/vgXX/group is not unique.
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
11-16-2004 04:03 AM
11-16-2004 04:03 AM
vgcreate: Minor number of /dev/vg10/group is not unique. /dev/vg11/group has the same minor number.
However, neither vg10 nor vg11 exist. This is the first time to create volume groups with these names.
/dev contains a vg10 and vg11 device directory with a group file, but neither volume group appears on my list in SAM.
Is it safe to delete these two directories in /dev and start over? Or is there a better way to clear these unlisted volume groups?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 04:06 AM
11-16-2004 04:06 AM
Re: Minor number of /dev/vgXX/group is not unique.
Check if there is an old group file
# ll /dev/*/group
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 04:11 AM
11-16-2004 04:11 AM
Re: Minor number of /dev/vgXX/group is not unique.
It should be safe to remove the /dev/vg10 and /dev/vg11 directories and start over.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 04:12 AM
11-16-2004 04:12 AM
Re: Minor number of /dev/vgXX/group is not unique.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 04:12 AM
11-16-2004 04:12 AM
Re: Minor number of /dev/vgXX/group is not unique.
check for duplicate minor number for the group files in /dev
ll /dev/*/group
you must have unique minor number for each group file / for each vg.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 04:15 AM
11-16-2004 04:15 AM
Re: Minor number of /dev/vgXX/group is not unique.
There is nothing that forces your to associate vg02, for example, with 0x020000 and vg09 with a group node minor device number of 0x090000. This is simply convention but it does make life easier.
The most common error, in trying to follow this convention, is not remembering that the values are hexadecimal so that vg10 should be 0x0a0000, vg11 should be 0x0b0000, ... .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 05:10 AM
11-16-2004 05:10 AM
Re: Minor number of /dev/vgXX/group is not unique.
vgcreate: cannot open the control file /dev/vg10/group. No such device.
However, when I go to this directory the group file exists with a unique number, and it is world readable. It is owned by root/adm with read-only priveleges for everyone, including root. All other vg devices have the same privileges and work just fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 05:15 AM
11-16-2004 05:15 AM
Re: Minor number of /dev/vgXX/group is not unique.
ls -l /dev/vg*/group
strings /etc/lvmtab
vgdisplay
That should enable us to identify the problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 05:33 AM
11-16-2004 05:33 AM
SolutionGo back and read Clay's comment again...I belive (although not seen) that you probably have a vg called 0x0a0000 and 0x0b0000. Note what Clay reminded you of....the minor numbers are NOT decimal, but rather hexidecimal.
So if you have a vg with 0x0a0000 you can NOT create 0x100000, because a=10.
Just my 2 cents thrown into Clay's little pond..
Remember (depending on what your maxvg setting is) you could use a higher number, as long as you don't exceed that value.
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 05:47 AM
11-16-2004 05:47 AM
Re: Minor number of /dev/vgXX/group is not unique.
Y'all helped me solve my initial problem that was generated by another problem.
Deleting those device directories worked fine and allowed me to start over.
However, the root of the problem was my maxvgs setting which Rita reminded me of.
It is set at 10....so vg10, vg11, vg12....would have all failed until I changed the setting.
Thanks for everyone's help....points have been assigned :)