Created on 06-28-2016 01:43 PM - edited 09-16-2022 01:35 AM
To remove a already installed Grafana, following needs to be done:
1. Stop the AMS service from Ambari UI.
2. Execute following curl API commands to delete Grafana:
# curl -u admin:admin -i -H 'X-Requested-By: ambari' -X PUT -d '{"RequestInfo": {"context" :"Stop HDFS via REST"}, "Body": {"ServiceInfo": {"state": "INSTALLED"}}}' http://<strong><ambari-server-hostname></strong>:8080/api/v1/clusters/<strong><CLUSTERNAME></strong>... # curl -u admin:admin -i -H 'X-Requested-By: ambari' -X PUT -d '{"RequestInfo": {"context" :"Stop HDFS via REST"}, "Body": {"ServiceInfo": {"state": "INSTALLED"}}}' http://<strong><ambari-server-hostname></strong>:8080/api/v1/clusters/<strong><CLUSTERNAME></strong>... # curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http://<strong><ambari-server-hostname></strong>:8080/api/v1/clusters/<strong><CLUSTERNAME></strong>... # curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http://<strong><ambari-server-hostname></strong>:8080/api/v1/clusters/<strong><CLUSTERNAME></strong>... # curl -u admin:admin -X GET http://<strong><ambari-server-hostname></strong>:8080/api/v1/clusters/<strong><CLUSTERNAME></strong>...
3. Start the AMS service from Ambari UI.
Here:
Replace following :
<ambari-server-hostname> = FullyqualifiedDomain Nameof the node running Ambari Server
<CLUSTERNAME> = Name of the Cluster
<hostname_of_Grafana_host> = FullyqualifiedDomain Name of the node where Grafana has to be deleted.
Created on 07-27-2016 03:45 PM
Very useful, thanks
Created on 04-20-2017 08:57 PM
Note that the <strong> and </strong> strings in the code block above should be removed, since they are HTML formatting commands that somehow became visible in the formatted text of the code block.