- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Couldn't access physical volumes
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
07-26-2002 05:59 PM
07-26-2002 05:59 PM
Couldn't access physical volumes
I'm trying to import a vg for sharing in HA cluster in 10.20. Here...
root@rysap109 # vgimport -m mapfile_vg08 -s -v /dev/vg08
Beginning the import process on Volume Group "/dev/vg08".
Couldn't access the list of physical volumes for volume group "/dev/vg08".
I've tried to insf the hw path with no joy. Any ideas?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2002 06:26 PM
07-26-2002 06:26 PM
Re: Couldn't access physical volumes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 07:04 AM
07-29-2002 07:04 AM
Re: Couldn't access physical volumes
when you made vgexport you can create a file with disk of vg08
vgexport -pv -m /tmp/mvg08 /dev/vg08 > /tmp/dvg08
Edit file /tmp/dvg08 and delete firts line "Beginning the export process on Volume..."
Copy both files to other node, and make vgimport process, and be sure that the device files are the same on all nodes belong to the HA cluster.
vgimport -v -m /tmp/mvg08 /dev/vg08 `cat /tmp/dvg08`
I hope this can help
regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 07:22 AM
07-29-2002 07:22 AM
Re: Couldn't access physical volumes
Thanks for the tips...
ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 07:31 AM
07-29-2002 07:31 AM
Re: Couldn't access physical volumes
Marty