Operating System - HP-UX
1825775 Members
2154 Online
109687 Solutions
New Discussion

Re: migrating parisc to itanium

 
Mme Jonnaert
Contributor

migrating parisc to itanium

hi,
we have to migrate our PaRisc server to an Itanium server.
Hpux B.11.11.0303 to hpux B.11.23.0505
the data are on 2 differents san bay and we would like not making a backup/restore
Can we mount the disk from one server to another, executing vgscan on the new server?
The lvm versions are there compatible ?
thanks for your answer

therese-marie
7 REPLIES 7
Pete Randall
Outstanding Contributor

Re: migrating parisc to itanium

You'll need to run vgexport on the old server and then vgimport on the new one:

vgchange -a n /dev/vg01
vgexport -s -m /tmp/vg01map /dev/vg01

copy the map file to the new server

mkdir /dev/vg01
mknod /dev/vg01/group c64 0x010000
vgimport -s -m /tmp/vg01map /dev/vg01
vgchange -a y /dev/vg01

If you used standard lvol naming conventions, the map file will be unnecessary.


Pete

Pete
James R. Ferguson
Acclaimed Contributor

Re: migrating parisc to itanium

Hi:

For "move" volume groups from one server to another, you 'vgexport' them from the source and 'vgimport' them into the destination server.

See the manpages for 'vgexport' and 'vgimport' for more information.

Regards!

...JRF...
Rick Garland
Honored Contributor

Re: migrating parisc to itanium

vgexport/vgimport are your commands to be used.

Depending on your SAN configuration, you may need to do some work there as well. Example, are the new ia64 systems zoned to see the disks on the SAN?

Double check your applications. Most (if not all) are not interchangable between ia64 and PARISC systems.
Geoff Wild
Honored Contributor

Re: migrating parisc to itanium

Can you see both san's from atleast one of the servers?

You will then either have to vgimport or, if you want the data on the other san, use vxdump/vxrestore for every file system:

vxdump -0 -f - -s 1000000 -b 16 /san1/oracle | (cd /oracle ; vxrestore rf -)

Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
Steven E. Protter
Exalted Contributor

Re: migrating parisc to itanium

Shalom,

With vgexport/vgimport volume groups adn the data on them is a piece of cake.

You just need to provide acess to both servers of the same disk. It must be shared in some way, via scsi or fiber(which works like scsi).

LVM vg's created under HP-UX 11.11 can be imported into 11.23

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Devender Khatana
Honored Contributor

Re: migrating parisc to itanium

Hi,

Yes, LVM versions are very same and you can do the vgexport/vgimport as mentioned in earlier posts.

HTH,
Devender
Impossible itself mentions "I m possible"
Nguyen Anh Tien
Honored Contributor

Re: migrating parisc to itanium

It is very easy with vgexport and vgimport.
Pete Randall is an example.
HP is simple