- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- cannot vgcreate - urgent
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
03-27-2003 11:14 AM
03-27-2003 11:14 AM
I have to move data to free up at XP256 by tomorrow. So I must make new vg's on the new XP512. But somehow vgcreate isn't polite to me. Could someone please help?
# vgcreate vg20DFSInf /dev/dsk/c12t13d4
vgcreate: Cannot open the control file "/dev/vg20DFSInf/group":
No such device
# ll /dev/vg20DFSInf/group
crw-rw-rw- 1 root sys 64 0x200000 Mar 27 19:54 /dev/vg20DFSInf/group
The disk is recognized with xpinfo and I have succesfully pvcreated it. But still it doesnt work. any suggestions?
--
Best regards
Tonny
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 11:19 AM
03-27-2003 11:19 AM
SolutionYour group file is incorrect.
Minor number 200000 is valid only if your maxvgs kernel parameter is specified more than 32. Look at the command 'kmtune -l -q maxvgs' and find the value.
The hex equivalent of the two digits followed by 0x in the minor number should be equal or less than the "maxvgs" parameter.
If this is only the second volume group, then you might want to create a group file like
mknod /dev/vg20DFSInf/group 0x020000
Otherwise, increase the maxvgs parameter and that needs a reboot.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 11:20 AM
03-27-2003 11:20 AM
Re: cannot vgcreate - urgent
What is the minor number supposed to be? If it is supposed to be 2, then do the following:
# rm /dev/vg20DFSInf/group
# mknod /dev/vg20DFSInf/group c 64 0x020000
If the minor number is supposed to be 20, do the following:
# rm /dev/vg20DFSInf/group
# mknod /dev/vg20DFSInf/group c 64 0x140000
Remember that the minor number is a HEXADECIMAL value thus a decimal 20 = a hex 14
Also make sure that your MAXVGS kernel parameter is set high enough to allow this.
By default MAXVGS is 10 or 12. If you want a minor number that is larger than that you will need to increase maxvgs, regen the kernel and reboot the machine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 11:22 AM
03-27-2003 11:22 AM
Re: cannot vgcreate - urgent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 11:22 AM
03-27-2003 11:22 AM
Re: cannot vgcreate - urgent
# mknod /dev/vg20DFSInf/group c 64 0x040000
for example (as long as they are unique). If you use 0x20, you might be working against the max volume group limit (ie 15 by default).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 11:23 AM
03-27-2003 11:23 AM
Re: cannot vgcreate - urgent
Regards,
RZ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 11:27 AM
03-27-2003 11:27 AM
Re: cannot vgcreate - urgent
--
Best regards
Tonny