Created 10-07-2016 04:09 PM
Unfortunately, i have installed clients on all the worker nodes.
How can I remove these clients from all worker nodes ?
Created 10-07-2016 04:20 PM
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
Created 10-07-2016 04:20 PM
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
Created 10-07-2016 04:45 PM
Thanks! It's working.