Skip to main content

We've Moved!

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

Removing an HCI system

To completely remove 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.

    For example, if you used systemd to run HCI.service, you run these commands to stop it and then disable it:

    sudo systemctl stop HCI.service
    sudo systemctl disable HCI.service

    Additionally, if you used systemd to run Hitachi Content Intelligence, delete the HCI.service file from where you copied it when you installed Hitachi Content Intelligence on the instance. Typically, the HCI.service is copied to /etc/systemd/system.

  2. Run this command to stop all Hitachi Content Intelligence Docker containers on the instance:

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

    1. List all Docker containers:

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

    3. Delete each of those containers:

      sudo docker rm <container-id>
  4. Delete the Hitachi Content Intelligence Docker images:

    1. List all Docker images:

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

    3. Delete each of those images:

      sudo docker rmi <image-id>
  5. Delete the Hitachi Content Intelligence installation folder:

    rm -rf /<installation-directory>

    For example:

    rm -rf /opt/hci

 

  • Was this article helpful?