- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: migrating parisc to itanium
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-09-2006 03:16 AM
02-09-2006 03:16 AM
migrating parisc to itanium
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2006 03:25 AM
02-09-2006 03:25 AM
Re: migrating parisc to itanium
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2006 03:27 AM
02-09-2006 03:27 AM
Re: migrating parisc to itanium
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...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2006 04:13 AM
02-09-2006 04:13 AM
Re: migrating parisc to itanium
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2006 04:51 AM
02-09-2006 04:51 AM
Re: migrating parisc to itanium
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2006 05:01 AM
02-09-2006 05:01 AM
Re: migrating parisc to itanium
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
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
02-09-2006 07:40 PM
02-09-2006 07:40 PM
Re: migrating parisc to itanium
Yes, LVM versions are very same and you can do the vgexport/vgimport as mentioned in earlier posts.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2006 09:01 PM
02-09-2006 09:01 PM
Re: migrating parisc to itanium
Pete Randall is an example.