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
06-19-2006 02:46 PM
06-19-2006 02:46 PM
vgcreate: Cannot open the control file "/dev/vgu10/group":
Device busy
#
How can I fix this problem?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 02:54 PM
06-19-2006 02:54 PM
SolutionCheck the following
# ll /dev/vgu10
See if you find a file called "group", else you need to do the following
# ll /dev/*/group (to find out the minor numbers used)
example
0x020000 --> here the minor number is 02
0x010000 --> here the minor number is 01
# mkdir /dev/vgu10
# mknod /dev/vgu10/group c 64 0xYY0000
Replace YY with the minor number you want to assign to the volume.
# vgcreate /dev/vgu10 /dev/dsk/c14t1d4
should work.
regards
albert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 03:09 PM
06-19-2006 03:09 PM
Re: vgcreate
# kmtune -l -q maxvgs
the default max number of VG is 10, need to change the paramter and rebuild the kernel if you already have 10 VGs.
GOOD LUCK!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 03:11 PM
06-19-2006 03:11 PM
Re: vgcreate
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 03:13 PM
06-19-2006 03:13 PM
Re: vgcreate
By convention (though certainly not required) vg10 would use major 64 monir 0x0a0000
e.g.
mkdir /dev/vg10
mknod /dev/vg10/greoup c 64 0x0a0000
Now you should be ready to vgcreate (assuming that 0x0a0000 is truly unique).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2006 07:41 PM
06-28-2006 07:41 PM
Re: vgcreate
I think you already used group minor number 10. Check othr group's group minor number.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2006 08:14 PM
06-28-2006 08:14 PM
Re: vgcreate
Else check for the existing minor no.'s using ll /dev/vg*/group
then use minor no. which is currently not in use....
HTH