Uninstall ADCM
Depending on the selected ADCM installation method, the following options of removing ADCM are available:
-
uninstall via ADCM Installer, if the ADCM installation was deployed using this tool;
-
manually uninstall the ADCM container if ADCM was installed via a Docker Image.
Uninstall via ADCM Installer
To remove a deployed ADCM installation via ADCM Installer, run the following command:
$ adi delete --volumes --yes
|
NOTE
Note that when this command is executed, the Docker container and its associated volumes are removed. For more information on uninstalling via ADCM Installer, refer to the Use ADCM Installer article.
|
Manually uninstall
To manually uninstall ADCM, follow these steps:
-
Stop the Docker container
adcm:$ sudo docker stop adcm -
Remove the Docker container
adcm:$ sudo docker rm adcm -
Remove volumes associated with the Docker container
adcm:$ sudo docker volume rm <volume_name>where
<volume_name>is the volume name. If there are several volumes, enter their names separated by spaces.
To make sure that the Docker container adcm is successfully removed, run the following command:
-
to display information about all Docker containers:
$ sudo docker ps -a -
to display information about all volumes:
$ sudo docker volume ls
Make sure that the Docker container adcm and the volumes associated with this Docker container no longer appear in the lists.