- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP-UX11 give error when creating Volume Group thru...
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-26-2002 10:24 PM
06-26-2002 10:24 PM
HP-UX11 give error when creating Volume Group thru Sam
vgcreate: Cannot open the control file "/dev/xxx/group": Nosuch device
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2002 10:35 PM
06-26-2002 10:35 PM
Re: HP-UX11 give error when creating Volume Group thru Sam
It could be that your system kernel has reached a limit where you cannot create any more volume groups. A quick check will do this.
# ll /dev/*/group (and see how many)
# kmtune -l -q maxvgs (will tell you what the system kernel has. The default is 10. My system below has 30. If this is the case you will need to increase the value. 'sam' can be used to do this task.)
# kmtune -l -q maxvgs
Parameter: maxvgs
Value:30
Default: 10
Minimum: -
Module: -
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2002 10:41 PM
06-26-2002 10:41 PM
Re: HP-UX11 give error when creating Volume Group thru Sam
Better U do thru command line. Follow these
Suppos U want to create vg01 with /dev/dsk/c5t0d0
I hope U have done pvcreate for this PV. If not
#pvcreate -f /dev/rdsk/c5t0d0
Then
#mkdir /dev/vg01
#mknod /dev/vg01/group c 64 0x010000
This is for creating devicefile group
#vgcreate -e 180000 /dev/vg01 /dev/dsk/c5t0d0
Here -e switch is for defining the maximum number of PEs in a PV
Now U have created VG. Now U can proceed with lvol creation.
Best of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2002 10:55 PM
06-26-2002 10:55 PM
Re: HP-UX11 give error when creating Volume Group thru Sam
The kernel parameter was at default value of 10 VG limit. The command line solution is also good but would not create any VG until the kernel parameter was modified to accomodate more VG creation.
Thanx Guys
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2002 10:59 PM
06-26-2002 10:59 PM
Re: HP-UX11 give error when creating Volume Group thru Sam
Here is an easy way to fix the problem instead of using 'sam'
# cd /stand/build
# /usr/lbin/sysadm/system_prep -s system
# vi system
In the last half of the file add
maxvgs 30
Save the file
# mk_kernel -s system
# kmupdate
Your system is ready to reboot and will install the new kernel during the system reboot.
System reboot command
# shutdown -r -y 0
HTH
Michael