To remove the previous Kafka and DCF settings, follow the steps on all the Domain Managers.
Procedure
- Remove the previous (Kafka and DCF) setting from domain manager using dmctl command.
- Get the instance name of the Kafka access setting:
dmctl -s < Server name> geti Kafka_AccessSetting
Note: Server name can be either ESM or OI server name. - Remove the Kafka access setting from the domain manger:
dmctl -s <Server name> invoke Kafka_AccessSetting::"<kafka-access-setting-instance-name> " remove | tee
- Get the instance name of the DCF setting:
dmctl -s <Server name> geti DataCollector_AccessSetting
- Remove the DCF setting from the domain manger:
dmctl -s <Server name> invoke DataCollector_AccessSetting::"<data-collector-access-setting-instance-name > " remove | tee
- Get the instance name of the Kafka access setting:
- Remove the Kafka and DCF settings which were configured in VMware Telco Cloud Service Assurance 2.2 from the backend Postgres database by executed the below steps:
- kubectl exec -it postgres-0 -- bash
- psql
- \c collector;
- Delete from configuration where name='< kafka-access-setting-instance-name>';
- Delete from configuration where name='< data-collector-access-setting-instance-name >';
Note: If there are multiple DCF and Kafka settings configured then the below steps need to be repeated for all the settings.