- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vgimport : Couldn't access the list of 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
03-26-2007 07:34 PM
03-26-2007 07:34 PM
vgimport : Couldn't access the list of physical volumes for volume group
I have exported from system A and trying to import in system B using the foll commands:
# vgexport -p -s -m file.out /dev/vgnnm
in system B
vgimport -s -m /etc/cmcluster/nnm/file.out /dev/vgnnm
but i am getting the error message
"Couldn't access the list of physical volumes for volume group "/dev/vgnnm"
something is wrong with this comand or did i miss something ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2007 07:53 PM
03-26-2007 07:53 PM
Re: vgimport : Couldn't access the list of physical volumes for volume group
Strings /etc/lvmtab
Check to see that all listed disks for /dev/vgnnnm exist and can be accessed. Use cstm,mstm,or xstm
You may need to rename lvmtab and vgscan -a to get a consistent lvm config.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2007 08:57 PM
03-26-2007 08:57 PM
Re: vgimport : Couldn't access the list of physical volumes for volume group
Did you create the dir and the group files. Check also the permissions on the dir.
Rgds,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 04:34 AM
03-27-2007 04:34 AM
Re: vgimport : Couldn't access the list of physical volumes for volume group
mkdir dev/vgnnm
and
mknod /dev/vgnnm/group c 64 0xXX0000
on system B. Chage XX in the above example to a hex value that you are not using in another volume group. To get a list of previously used vaules, use:
ll /dev/vg*/group
And that assumes that you named all your vg's beginning with vg in the name. I think you get the picture. Look into that and let us know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 04:41 AM
03-27-2007 04:41 AM
Re: vgimport : Couldn't access the list of physical volumes for volume group
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 01:20 PM
03-27-2007 01:20 PM
Re: vgimport : Couldn't access the list of physical volumes for volume group
Suggesting this:
On System A:
a) # vgexport -v -p -s -m
/dev/
b) rcp or ftp
path on System B.
On System B :
a) IF same
# vgexport -v /dev/
b) # mkdir /dev/
c) # mknod /dev/
node: replace 0xAB0000 with minor number as on System A (make sure it's unique).
d) # vgimport -v -s -m
Hope this helps.