Skip to main content

We've Moved!

Product Documentation has moved to docs.hitachivantara.com
Hitachi Vantara Knowledge

Uninstalling the system

To completely uninstall your system, do the following on all instances:

Procedure

  1. Stop the run script from running. You do this using whatever method you're currently using to run the script.

  2. Run this command to stop all system Docker containers on the instance:

    sudo <installation-directory>/bin/stop
  3. Delete the system Docker containers:

    1. List all Docker containers:

      sudo docker ps
    2. Note the container IDs for all containers that use a com.hds.ensemble or com.hitachi.aspen image.

    3. Delete each of those containers:

      sudo docker rm <container-id>
  4. Delete the system Docker images:

    1. List all Docker images:

      sudo docker images
    2. Note the image IDs for all images that use a com.hds.ensemble or com.hitachi.aspen repository.

    3. Delete each of those images:

      sudo docker rmi <image-id>
  5. Delete the system installation directory:

    rm -rf /<installation-directory>

 

  • Was this article helpful?