Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

How to remove clients from worker nodes?

avatar
Contributor

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
Contributor

Thanks! It's working.