- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vgimport
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
11-24-2007 02:42 PM
11-24-2007 02:42 PM
vgimport
# Beginning the import process on Volume Group "/dev/vgu22".
vgimport: Cannot open the control file "/dev/vgu22/group":
No such device
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2007 02:58 PM
11-24-2007 02:58 PM
Re: vgimport
you need to input the device name like this
vgimport -v -m mapfile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2007 03:02 PM
11-24-2007 03:02 PM
Re: vgimport
names and numbers are to be read. See manpage for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2007 03:13 PM
11-24-2007 03:13 PM
Re: vgimport
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2007 03:16 PM
11-24-2007 03:16 PM
Re: vgimport
What you mean by this? You havnt runned any command? then from where you got above error.... From log files??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2007 03:18 PM
11-24-2007 03:18 PM
Re: vgimport
First, do an "ls -l /dev/vg*/group" and note all the minor device numbers in use. Choose a unused one, e.g. 0x090000 and make the device node.
mknod /dev/vgu22/group c 64 0x090000
You can them execute vgimport. The map file is optional if the LVOL names are standard and you know the disk device nodes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2007 03:39 PM
11-24-2007 03:39 PM
Re: vgimport
Agree to what Clay has said, the man page of vgimport is clear about it .....
From #man vgimport --->
The command works much like vgcreate by requiring that the volume group device directory and the group special file be created before the command is executed.
Regards,
RD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2007 03:40 PM
11-24-2007 03:40 PM
Re: vgimport
# vgimport -v /dev/vgu12 /dev/dsk/c14t1d3
Beginning the import process on Volume Group "/dev/vgu12".
vgimport: Cannot open the control file "/dev/vgu12/group":
No such device
--it still same situation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2007 06:04 PM
11-24-2007 06:04 PM
Re: vgimport
hp-ux has a kenel parameter, maxvgs, you cannot give group number greater than this value. look at maxvg parameter by "kctune maxvg" and give a value less than this value.
Hasan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2007 03:10 AM
11-26-2007 03:10 AM
Re: vgimport
1. check maxvgs as told by hasan and increase it if its the default (10 ).
2. how many Volume groups do you already have
cd /dev
ls -lR|grep group|sort -n -k6
then add 1 to the minor number of the last entry and create the group file with that number ..
a) see that you don't have a vgu22 volume group already existing ...!
b) mkdir -p /dev/vgu22
c) mknod /dev/vgu22/group c 64 0x??0000
replace ?? with the number you calculated in step 2 above
d) now try the import -- use the verbose option
e) if you still have problem .. use tusc command when running vgimport
Regards,
RD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2007 03:32 AM
11-26-2007 03:32 AM
Re: vgimport
Pls increate vgs to 15 or 20 or change minor number below 9
#mknod /dev/vg02/group c 64 0x080000
HTH
tienna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2007 03:54 AM
11-26-2007 03:54 AM