Skip to content

Adding migration images to the master host

Use this procedure to load migration images into the local Docker registry on the Control Center master host. This procedure is only used in appliance updates to Resource Manager 6.6.0.

  1. Log in to the Control Center master host as root or as a user with superuser privileges.

  2. Change directory to /tmp.

    cd /tmp
    
  3. Load the images.

    for image in install-zenoss-serviced-*.run
    do
      /bin/echo -en "\nLoading $image..."
      yes | ./$image
    done
    
  4. List the images in the registry.

    docker images
    

    The result should show one image for each archive file.

  5. Optional: Delete the archive files, if desired.

    rm -i ./install-zenoss-serviced-*.run