- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vgimport warnings
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-18-2003 10:01 AM
11-18-2003 10:01 AM
Warning: Logical Volume number "61" found on physical volume not found in "/tmp/vgx070.map".
Warning: Logical Volume number "62" found on physical volume not found in "/tmp/vgx070.map".
The logical volume numbers are not in the .map files. What up with that?
If I do a ll on /dev/vgx070, I find the following:
brw-r----- 1 root sys 64 0x460043 Nov 18 13:41 lvol070119
brw-r----- 1 root sys 64 0x46003d Nov 18 13:41 lvol61
brw-r----- 1 root sys 64 0x46003e Nov 18 13:41 lvol62
crw-r----- 1 oracle dba 64 0x460001 Nov 18 13:41 rlvol070001
Note the lvol61 and lvol62...these are the guys the vgimport is complaining about.
If I do a pvdisplay -v on the device, I find the following in the listing:
00178 current /dev/vgx070/lvol070060 00001
00179 current /dev/vgx070/lvol070060 00002
00180 current ??? 00000
00181 current ??? 00001
00182 current ??? 00002
00183 current ??? 00003
00184 current ??? 00004
00185 current ??? 00005
00186 current ??? 00000
00187 current ??? 00001
00188 current ??? 00002
00189 current ??? 00003
00190 current ??? 00004
00191 current ??? 00005
00192 current /dev/vgx070/lvol070061 00000
00193 current /dev/vgx070/lvol070061 00001
It's probably all very clear to someone but it certainly has me confused. Yes, I've done a vgexport on vgx070 before trying to import.
My apolagies fo such a long post. Just wanted to throw in as much detail as possible.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:34 AM
11-18-2003 10:34 AM
Re: vgimport warnings
They appear at the end of my lvol listing.
lvol070001
.
.
lvol070114
lvol070115
lvol070116
lvol070117
lvol070118
lvol070119
lvol61
lvol62
rlvol070001
rlvol070002
rlvol070003
rlvol070004
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 04:39 PM
11-18-2003 04:39 PM
Re: vgimport warnings
In my observation the source of your problem is
1.Somebody created lvol61 and lvol62 and insted of removing it using lvremove command, deleted device files of lvol61 and lvol62.
you just try to create device file of lvol61 and lvol62 using mksf or mknod command, if you want exact syntex of command just post the output of ll /dev/vgx070 .
after creating the device file you should not get error "???" in pvdisplay command.
then you can remove lvol61 and lvol62 using lvremove and export the volume group.
it will not give you error.
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 06:23 AM
11-20-2003 06:23 AM
Re: vgimport warnings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 07:08 AM
11-20-2003 07:08 AM
Re: vgimport warnings
note the ???
I was actually able to resolve the problem by following Michael and Sunil's advice on creating the device file. The problem for me was that the lvol61 and lvol62 wern't appearing on the server where my volume group was active. They only appeared on the servers where I had imported the volume group ...using the .map from the server where the VG was active.
I ended up exporting my active volume group and then importing from the existing map file...they now appeared on the server where the volume group was active. Once I reached that point I did the lvremove, recreated my .maps, moved them out to my other servers...all is good
Thanks for the help.