Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How to remove clients from worker nodes?

avatar
New Member

Unfortunately, i have installed clients on all the worker nodes.

How can I remove these clients from all worker nodes ?

1 ACCEPTED SOLUTION

avatar
Super Guru

use the following command to list all the services installed on your node in cluster

	curl -u admin:admin -H "X-Requested-By: ambari" -X GET http://AMBARIHOSTNAME:8080/api/v1/clusters/CLUSTERNAME/hosts/HOST

then delete the client you want using following command

	curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http://AMBARI_SERVER_HOST:8080/api/v1/clusters/CLUSTERNAME/hosts/HOSTNAME/host_components/DATANODE

View solution in original post

2 REPLIES 2

avatar
Super Guru

use the following command to list all the services installed on your node in cluster

	curl -u admin:admin -H "X-Requested-By: ambari" -X GET http://AMBARIHOSTNAME:8080/api/v1/clusters/CLUSTERNAME/hosts/HOST

then delete the client you want using following command

	curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http://AMBARI_SERVER_HOST:8080/api/v1/clusters/CLUSTERNAME/hosts/HOSTNAME/host_components/DATANODE

avatar
New Member

Thanks! It's working.