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-09-2005 02:19 PM
09-09-2005 02:19 PM
vgcreate
whene I do "vgcreate /dev/vg05 /dev/dsk/x10t4d3" return the message "Cannot the open file /dev/vg05/group" and if exist.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 02:28 PM
09-09-2005 02:28 PM
Re: vgcreate
ll /dev/vg*/group
Make sure none are the same.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 04:30 PM
09-09-2005 04:30 PM
Re: vgcreate
Either minor number is not unique or the group file is not created itself. Is it ?
#mkdir /dev/vg05
#mknod /dev/vg05/group c 64 0x??0000
( Where ?? is the unique number confirm by "ll /dev/*/group", normally should be 05 for vg05 if the sequence has been maintained earlier)
#vgcreate /dev/vg05 /dev/dsk/c10t4d3
(Also note the typo in the device file name)
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 06:24 PM
09-09-2005 06:24 PM
Re: vgcreate
So vg05, minor 05
vg10, minor 0a
etc...
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 06:49 PM
09-09-2005 06:49 PM
Re: vgcreate
It seems you have not created the group file hence the error .
You can do as following:
1. Create the new vg directory.
# cd /dev
# mkdir vg05
2. Create the unique group file
# ls -l /dev/*/group [ to check all the group files ]
# mknod group c 64 0x050000
[ 0x050000 has to be unique , 0x0N0000 (replace N with unque number).
3. vgcreate /dev/vg05 /dev/dsk/x10t4d3
4. vgdisplay -v /dev/vg05 | more
Cheers ,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 06:54 PM
09-09-2005 06:54 PM
Re: vgcreate
( # cd /dev/vg05/ )
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2005 06:44 PM
09-10-2005 06:44 PM
Re: vgcreate
The kernel parameter maxvgs also affects the group file minor number! By default the maxvgs is set to 10. If so your group file's minor number shouldn't exceed 10 (0a - in hex).
Regds
TT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2005 02:35 PM
09-11-2005 02:35 PM
Re: vgcreate
There are couple of things u need to check.
1. ll /dev/vg*/group and check whether the number u have selected is unique.
2. If you have not created the group file please complete the same first with
#mkdir /dev/vg05
#mknod /dev/vg05/group c 64 0x##0000. The ## number can be selected after verifying the output of ll /dev/vg*/group .
3. After this u can execute the vgcreate command.
If the error repeates, need to check the maxvgs kernel parametre.
cheers
manu