- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vgcreate error
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
09-16-2001 08:28 AM
09-16-2001 08:28 AM
vgcreate error
vgcreate:Cannot open the control file "/dev/vg14/group" No such device
But I have check a lot of time , I did have the device in /dev directory. I remove the /dev/vg14 and recreate it , still can not open.
We plan to create 18 vgs on our system , we had already create 13 vgs successfully but stop at 14th. We can not create 15,16,17,18 too ,what happen ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2001 09:12 AM
09-16-2001 09:12 AM
Re: vgcreate error
What is your maxvgs set to in the kernel?
You can use SAM to check, select kernel configuration and then tuneable parameters, and se what maxvgs is set to.
Other thn that, ar eyo creating your group file in the directory correctly?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2001 10:49 AM
09-16-2001 10:49 AM
Re: vgcreate error
As Melvyn suggested this could be the maxvgs limit in the kernal. You may need to increase it and create a new kernel. The other problem you may be seeing is duplicate minor device numbers when you create your group files.
I suggest that you first do a strings /etc/lvmtab and see if that looks as you expect it. You can always do a vgexport /dev/vg14 and that will clean up the /dev/vg14 directory and the lvmtab. I would then do an ls -l on every /dev/vgxx directory and note the minor device number for each group file. Your new group file's minor device must must be unique. By convention, vg01's group file is typically Maj 64 Min 0x010000, vg02's is Ma 64 Min 0x020000, ... . That is just convention not a requirement, but the minor device numbers must be unique.
Hope this helps, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2001 11:28 AM
09-16-2001 11:28 AM
Re: vgcreate error
kmtune -s maxvgs=30
mk_kernel
kmupdate
shutdown -ry 0
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2001 01:40 PM
09-16-2001 01:40 PM
Re: vgcreate error
Have a look at this thread.
http://docs.hp.com/hpux/onlinedocs/os/KCparam.MaxVGs.html
If youe maxvgs parameter is correctly set in the kernel to accomodate the no of VG's you want to create and you are still getting the error, then check and see that /dev/vg_name/group file is properly getting created.
mkdir /dev/vg_name
mknod /dev/vg_name/group c 64 0x0n0000
n=1,2,3,.... and should be unique, check
ll /dev/*/group
Hope this helps.
thanks