2 Setting Up Zero Downtime Migration Software

When you install Zero Downtime Migration software, read this section carefully as there may have been changes since the last time you performed an installation.

The Zero Downtime Migration software kit supports both physical and logical migrations. You only need to install one kit to get all of the functionality.

Always see the Zero Downtime Migration Release Notes for the latest information about known issues. Also, see the README file included with the downloaded Zero Downtime Migration software for any additional information about software installation and updates.

If you already have Zero Downtime Migration software installed on a host, you should always make sure it is the latest available release. Zero Downtime Migration software updates give you the latest features and fixes while retaining existing job information, metadata, and log files. Always check the version and determine if it is the latest by comparing it with what's available on the downloads page.

For information about updating existing software to the latest release, removing the software, and starting and stopping the Zero Downtime Migration service, see Managing the Zero Downtime Migration Service.

Prepare a Host for Zero Downtime Migration Software Installation

If a host has not had Zero Downtime Migration software installed on it previously, verify that it complies with the requirements and perform any pre-installation tasks, then download and install the software. Once the software is installed, the host is referred to as the Zero Downtime Migration service host.

Provision a host with the following prerequisites and complete the following pre-installation tasks before installing Zero Downtime Migration software on it.

  • The Zero Downtime Migration service host should be a dedicated system, but it can be shared for other purposes.

    However, if the Zero Downtime Migration service is installed on the same host where RHP server is deployed, see Running RHP and Zero Downtime Migration Service on the Same Host for more info.

  • Zero Downtime Migration software requires a standalone Linux host running Oracle Linux 7.

  • The Zero Downtime Migration service host requires Perl to run the install script.

    Also, if you plan to migrate from Oracle Database 11.2.0.4 sources, you also need the latest Perl patch 5.28.2.

  • The Zero Downtime Migration service host must be able to connect to the source and the target database servers.

  • Ensure that the Linux host has 100 GB of free storage space.

  • You may use an existing user, or, on the Zero Downtime Migration service host, as root user, create a zdm group and add zdmuser user to the group.

    For example,

    root> groupadd zdm
    root> useradd –g zdm zdmuser
  • Verify that the glibc-devel and expect packages are installed.

    For Oracle Linux 7 installations with Base Environment "Minimal Install" you also need to install the packages unzip libaio oraclelinux-developer-release-el7.

  • Verify that the /etc/hosts entry for the host name and IP address are configured as expected, so that the host selected for Zero Downtime Migration software installation resolves to the correct IP address and the IP address is reachable with ping.

  • During the installation, the script might report any missing packages and instructions for setting appropriate values for kernel parameters. Be sure to install the missing packages and set the kernel parameters before the Zero Downtime Migration software installation.

  • Optionally, set a ZDM_HOME environment variable to the absolute path of the directory where the Zero Downtime Migration software will be installed. All of the examples in this document use $ZDM_HOME.

    zdmuser> export ZDM_HOME=absolute_path_to_zdm_home

Install Zero Downtime Migration Software

All commands are run as zdmuser.

  1. Download the Zero Downtime Migration software kit from https://www.oracle.com/database/technologies/rac/zdm-downloads.html to the Zero Downtime Migration service host.
  2. Create home and base directories.

    The home directory is where the Zero Downtime Migration software will be installed.

    The base directory is where all of the Zero Downtime Migration configuration files, logs, and other artifacts are stored.

    For example:

    /u01/app/zdmhome

    /u01/app/zdmbase

  3. Install the Zero Downtime Migration software as a non-root user.

    In this example the installation user is zdmuser.

    1. Change to the directory to where Zero Downtime Migration software is downloaded and unzip the software.
      zdmuser> cd zdm_download_directory
      zdmuser> unzip zdmversion.zip 
    2. Run the Zero Downtime Migration installation script.
      zdmuser>./zdminstall.sh setup oraclehome=zdm_oracle_home oraclebase=zdm_base_directory
              ziploc=zdm_software_location
      • zmdinstall.sh is the installation script
      • oraclehome is the absolute path to the Oracle Home directory where the Zero Downtime Migration software will be installed
      • oraclebase is the absolute path to the base directory where all of the Zero Downtime Migration configuration files, logs, and other artifacts are stored
      • ziploc is the location of the compressed software file (zip) included in the Zero Downtime Migration kit

      For example,

      zdmuser>./zdminstall.sh setup oraclehome=/u01/app/zdmhome
              oraclebase=/u01/app/zdmbase ziploc=/u01/app/oracle/zdm/shiphome/zdm_home.zip
              –zdm

    Note that the Zero Downtime Migration service host requires PERL to run the install script.

    Hereafter, the oraclehome value is referred to as ZDM_HOME, and the oraclebase value is referred to as ZDM_BASE.

    Ignore the following messages which are displayed on the terminal at the end of installation. There is no need to run these scripts.

    As a root user, execute the following script(s):
            1. $ZDM_HOME/inventory/orainstRoot.sh
            2. $ZDM_HOME/root.sh
    
  4. Start the Zero Downtime Migration service as user zdmuser.
    zdmuser> $ZDM_HOME/bin/zdmservice start
    

    You must start zdmservice before you can migrate your databases using Zero Downtime Migration.

    If you must stop the Zero Downtime Migration service, run the following command.

    zdmuser> $ZDM_HOME/bin/zdmservice stop
  5. Verify that the Zero Downtime Migration service installation is successful.
    When you run the following command, the output should be similar to that shown here.
    zdmuser> $ZDM_HOME/bin/zdmservice status
    ---------------------------------------
            Service Status
    ---------------------------------------
    Running:       true
    Tranferport:   5000-7000
    Conn String:   jdbc:mysql://localhost:8899/
    RMI port:      8897
    HTTP port:     8898
    Wallet path:   /u01/app/zdmbase/crsdata/fopds/security
  6. If necessary, change the default MySQL port.

    Zero Downtime Migration uses MySQL internally, configuring it by default on port 8897, as shown in the above zdmservice status example output. If you want to change this port number, see Setting the MySQL Port.