- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
How to remove clients from worker nodes?
- Labels:
-
Apache Hadoop
Created ‎10-07-2016 04:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks! It's working.
