- Remove the Composer server and associated microservices
- Remove Composer-related folders and files
- Remove the PostgreSQL metadata store used by Composer
Note: If you connected Composer to an existing PostgreSQL in your network, then skip these steps.
Uninstall Composer Server and All Associated Components
Select your server’s operating system and follow those steps to completely remove all Composer-related components:In CentOS Environments
- Stop all Composer microservices:
systemctl stop $(systemctl list-unit-files | grep zoomdata | awk '{print $1}')
- Remove Composer and associated components:
yum remove 'zoomdata*'
You are asked to verify the removal of the Composer components. Enter ‘y ’ to confirm the removal.
- Verify the removal of Composer components by running the following command. If all components have been successfully erased, the command returns no results.
yum list installed | grep zoomdata
- Remove all the Composer-specific folders:
- Remove the PostgreSQL metadata store:
- Remove the following PostgreSQL-related file:
sudo yum remove 'pgdg*'
- Remove the directories related to PostgreSQL:
In Ubuntu 18, 20, or 22 Environments
- Stop all Composer microservices:
sudo systemctl stop $(systemctl list-unit-files | grep 'zoomdata' | awk '{print $1}')
- Remove Composer and associated components:
- Verify the removal of Composer components by running the following command. If all components have been successfully erased, the command returns no results.
sudo apt list --installed | grep zoomdata
- Remove all the Composer-specific folders:
- Remove the PostgreSQL metadata store:
- Remove the following PostgreSQL-related file:
sudo apt-get remove 'pgdg*'
- Remove the directories related to PostgreSQL:
In Windows Environments
- Stop all Composer microservices:
./bootstrap-composer.ps1 -ServicesAction stop
- Create a binary PostgreSQL dump of Composer metadata to the
<install-path>/data/backups/
folder:
./bootstrap-composer.ps1 -DumpComposerMetadata
Important: Copy the information to a folder outside of the installation path or it will be deleted and unrecoverable after you uninstall Composer.
- Remove Composer components by running the following command.
./bootstrap-composer.ps1 -DeinstallComposer
See Windows Bootstrap Reference for more information.
You have completed the removal of all Composer-related components from your server.