- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vgimport error: Unable to read the physical vo...
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
02-07-2006 01:24 AM
02-07-2006 01:24 AM
Hi All,
Looked at some of the foum responses, but nothing seems to answer my error directly. I don't think the physical paths have changed at all, and I get this error when trying to import the map file from the primary node to the secondary node.
Unable to read the physical volume
I have just added another mount point and logical volume to a package, and trying to map the volume group on the secondary node. These are the steps I used for the vgexport and vgimport -
On Primary Node -
# vgexport -v -p -m /tmp/vgclwss.map
/dev/vgclwss
Beginning the export process on Volume Group "/dev/vgclwss".
vgexport: Volume group "/dev/vgclwss" is still active.
/dev/dsk/c4t0d3
/dev/dsk/c4t0d4
/dev/dsk/c4t0d5
/dev/dsk/c4t0d6
root@ugos388# rcp /tmp/vgclwss.map ugos389:/tmp/
Doing the vgexport on secondary node and vgimport
root@ugos389# vgexport /dev/vgclwss
Physical volume "/dev/dsk/c4t0d3" has been successfully deleted from
physical volume group "PV0".
Physical volume "/dev/dsk/c4t0d4" has been successfully deleted from
physical volume group "PV0".
Physical volume "/dev/dsk/c4t0d5" has been successfully deleted from
physical volume group "PV0".
Physical volume "/dev/dsk/c4t0d6" has been successfully deleted from
physical volume group "PV0".
root@ugos389# mkdir /dev/vgclwss
root@ugos389# mknod /dev/vgclwss/group c 64 0x030000
root@ugos389# vgimport -v -m /tmp/vgclwss.map /dev/vgclwss
Beginning the import process on Volume Group "/dev/vgclwss".
vgimport: Unable to read the physical volume.root@ugos389#
Does anyone have any ideas??
Thanks in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2006 01:27 AM
02-07-2006 01:27 AM
SolutionFrom the primary node
# vgexport -p -v -s -m vg.map /dev/vg
# rcp -p vg.map secondarynode:/tmp
In the secondary node
# vgexport ..
# mkdir /dev/vgname
# mknod /dev/vgname/group c 64 0xYY0000
# vgimport -s -v -m /tmp/vg.map /dev/vgname
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2006 01:35 AM
02-07-2006 01:35 AM
Re: vgimport error: Unable to read the physical volume
You need to either specify the physical paths during the 'vgimport' or specify '-s' during the 'vgexport' and 'vgimport'. Using '-s' collects the VGID into the mapfile and allows matching physical disks by that VGID in lieu of the path.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2006 01:36 AM
02-07-2006 01:36 AM
Re: vgimport error: Unable to read the physical volume
Extract from Man Page of vgexport:
"Sharable option, Series 800 only. When the -s option is specified, then the -p, -v, and -m options must also be specified.
A mapfile is created that can be used to create volume group entries on other systems in the high availability cluster (with the vgimport command)."
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2006 01:38 AM
02-07-2006 01:38 AM
Re: vgimport error: Unable to read the physical volume
Yes I read the -s option in the man pages, but what does "Series 800 only" mean???
I will try the vgexport with the -s and then try the vgimport again and let you all know. Thanks alot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2006 01:42 AM
02-07-2006 01:42 AM
Re: vgimport error: Unable to read the physical volume
Series 700 is for workstations.
These are the only two series that exists now.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2006 01:52 AM
02-07-2006 01:52 AM
Re: vgimport error: Unable to read the physical volume
Problem fixed :-)
Thanks for all your replies, the -s option fixed it. Have assigned points....
Regards
Trev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2006 01:55 AM
02-07-2006 01:55 AM
Re: vgimport error: Unable to read the physical volume
The -s option as advised fixed my problem. Thanks alot