- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How come I cannot do 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-04-2001 07:02 PM
11-04-2001 07:02 PM
How come I cannot do vgimport?
Couldn't open physical volume "/dev/rdsk/c4t5d7":
Verification of unique LVM disk id on each disk in the volume group Verification of unique LVM disk id on each disk in the volume group /dev/vg43 failed.
If I run "strings /etc/lvmtab" then I found:
/dev/vgprz43
/dev/dsk/c4t5d7
/dev/dsk/c6t6d0
/dev/dsk/c9t5d7
/dev/dsk/c11t6d0
Anybody knows how come I am getting this error?
Can I use -s in vgexport and vgimport here if I have not installed MCSG?
Thanks in advance,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 07:32 PM
11-04-2001 07:32 PM
Re: How come I cannot do vgimport?
your /etc/lvmtab file shows that you have created a volume group vgprz43
with four disks
/dev/dsk/c4t5d7
/dev/dsk/c6t6d0
/dev/dsk/c9t5d7
/dev/dsk/c11t6d0
when you do a vgimport you have mentioned a different volume group i.e.vg43 instead of
vgprz43.try your import with the correct name of the volume group.
mkdir /dev/vg43
mknod /dev/vg43/group c 64 0x060000
vgimport -v /dev/vg43 /dev/dsk/c4t5d0 (plus your devices)
vgchange -a y -q n /dev/vg43
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 07:46 PM
11-04-2001 07:46 PM
Re: How come I cannot do vgimport?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 07:50 PM
11-04-2001 07:50 PM
Re: How come I cannot do vgimport?
In addition to making the vg directory and group file, I suspect that the devices are different on the two hosts. It is rather unusual to /dev/rdsk/c4t5d0 to be the same physical device on two different boxes. It can happen but it is unususal. Do an ioscan -C disk -fn on both hosts and try to match the devices. I prefer not to use the -s import because the import does not choose the best possible combination of primary/alternate disk paths.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 08:24 PM
11-04-2001 08:24 PM
Re: How come I cannot do vgimport?
and is /dev/dsk/c6t6d0 the same disk (different path) as /dev/dsk/c11t6d0???
Did you have a mirror?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 08:24 PM
11-04-2001 08:24 PM
Re: How come I cannot do vgimport?
You can't have (as far as I know) use the same
volume group on two servers accessing the same
disks. You would need to be in a MC/SG
eenvironment.
Have a look this link for more information.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0x31d3cf38d6bdd5118ff10090279cd0f9,00.html
To export and import to another server do this:
On server A
# vgexport -m myvolgrp.mapfile -s -p -v /dev/newgrp
# vgchange -a n /dev/newgrp (to de-activate)
ftp the file to server B
On server B
# mkdir /dev/newgrp
# mknod /dev/newgrp/group c 64 0x080000
(make this number 0x080000 to your next number
# ll /dev/*/group (to see what numbers are used)
# vgimport -m myvolgrp.mapfile -s -p -v /dev/newgrp
# vgchange -a y /dev/newgrp
HTH
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 09:00 PM
11-04-2001 09:00 PM
Re: How come I cannot do vgimport?
and the disk /dev/dsk/c6t6d0 is the same disk (different path) as /dev/dsk/c11t6d0.
On node1, I did vgexport -s -m /tmp/p3.map -p -v /dev/vgprz43 and ftp p3.map to node2.
On node2, I did mkdir/mknod and run vgimport -m /tmp/p3.map -s -p -v /dev/vg43 and got error,
Beginning the import process on Volume Group "/dev/vg43".
Couldn't access the list of physical volumes for volume group "/dev/vg43"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 09:19 PM
11-04-2001 09:19 PM
Re: How come I cannot do vgimport?
It is possible to activate vg on two nodes(rw & ro).Before that make sure that your 2nd node can see the disk . Do ioscan -fnC disk.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0x00b8cf38d6bdd5118ff10090279cd0f9,00.html
Regards
Animesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 09:38 PM
11-04-2001 09:38 PM
Re: How come I cannot do vgimport?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 09:48 PM
11-04-2001 09:48 PM
Re: How come I cannot do vgimport?
Try #insf -e
Animesh