Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This section describes how to migrate your HP Alpha system to CHARON-AXP. We will use a sample HP AlphaServer ES40 system running OpenVMS to demonstrate the migration procedure. The process is similar for all CHARON-AXP models.

TopMigrationPageBack to the Table of Contents

Collecting information about the source HP Alpha system

...

To find out the exact types of controllers and other useful information refer to the source HP Alpha system documentation.

TopMigrationPageBack to the Table of Contents

Div
classpagebreak


Creation of CHARON-AXP configuration file

...

#
# HP AlphaServer model: AlphaServer ES40 6/667
#

set session hw_model = AlphaServer_ES40
set ace cpu_architecture = EV67
set rom dsrdb[0] = 1820 system_name = "AlphaServer ES40 6/667"

...

#
# Override default System Serial Number, set it to "SN01234567"
#

set rom system_serial_number = SN01234567

#
# Specify RAM size: 512 Mb
#

set ram size=512

#
# Map OPA0 console to the xtem from which CHARON-AXP runs
#

set COM1 alias=OPA0 line=(console)

#
# Connect the emulator's DQA0 to the host's ATAPI CD/DVD-ROM drive.
#

set ide container="/dev/cdrom"

#
# Load optional DE500BA PCI Ethernet Adapter (EWA0) and map it to the "eth1" host network interface
#

load DE500BA/dec21x4x EWA interface=EWA0
load packet_port/chnetwrk EWA0 interface="eth1"

#
# Load DEC-KZPBA SCSI controller and map it to 3 disk containers and 1 tape container
#

load KZPBA PKA scsi_id = 7

set PKA container[0] = "/my_disks/bootable.vdisk"
set PKA container[100] = "/my_disks/RZ22.vdisk"
set PKA container[200] = "/my_disks/RZ23.vdisk"

set PKA container[600] = "/my_tapes/my_tape.vtape" 

#
# Load DEC-KGPSA-CA PCI FC adapter and map it to a disk container
#

load KGPSA FGA

set FGA container[0] = "/my_disks/RZ24.vdisk"

...

TopMigrationPageBack to the Table of Contents

Making disk images

In our example, possible mappings of the KZPBA SCSI controller include disk and tape images. Tape images have not to be manually created whereas you have to provision disk images, as described below.

...

$ mkdskcmd -d rz24 -o /my_disks/rz24.vdisk
Please wait...
100% done
Success.
$ mkdskcmd -d rz23 -o /my_disks/rz23.vdisk
Please wait...
100% done
Success.
$ mkdskcmd -d rz22 -o /my_disks/rz22.vdisk
Please wait...
100% done
Success.
$ mkdskcmd -d rz28 -o /my_disks/bootable.vdisk
Please wait...100% done
Success.

TopMigrationPageBack to the Table of Contents

Installation of HP Alpha operating system

...

newvms$ INIT DKA300: SCRATCH
newvms$ MOUNT/SYSTEM/NOASSIST DKA300: SCRATCH

TopMigrationPageBack to the Table of Contents

Making remote backups

Now we are ready to create disk backups from the source HP Alpha system to CHARON-AXP.

...

When the backup procedure will be completed, the disk "DKA300" of the CHARON-AXP virtual machine will contain 3 savesets: "DKA0.BCK", "DKA100.BCK" and "DKA200.BCK"

TopMigrationPageBack to the Table of Contents

Div
classpagebreak


Restore backups to CHARON-AXP disks

...

Then Enable the network and reboot.

TopMigrationPageBack to the Table of Contents

Alternative ways of data transfer

...

  • Connect a SCSI tape drive to the CHARON-AXP host via a PCI card 
    • Map the tape drive in the CHARON-AXP configuration file

           a. Restore the source HP Alpha system backups from tape to disk images via OpenVMS running on CHARON-AXP.
           b. Boot from standalone backups and restore the content to CHARON-AXP virtual disks.

    • Dump the source HP Alpha system backups to tape images with the "mtd" utility and:
           a. Boot from the freshly installed OpenVMS system and restore the tape images to CHARON-AXP virtual disks.
           b. Boot from standalone backups and restore the content to CHARON-AXP virtual disks.
  • Create a network cluster between the source HP Alpha system and CHARON-AXP (it is possible to use the source system as a boot server) then perform backups from one disk to another:

    $ BACKUP/IMAGE/IGNORE=INTERLOCK REAL$DKA0: DKA0:


TopMigrationPageBack to the Table of Contents