Member since
04-12-2016
20
Posts
5
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2499 | 08-24-2016 06:23 AM | |
6188 | 08-23-2016 11:37 AM |
08-24-2016
06:23 AM
copy the public key of the ambari host to the node you are adding in the .ssh/authorized_keys and also vice versa to allow the password less authentication between the two hosts and then try register the host again.
... View more
08-23-2016
12:01 PM
You could remove via delete statement in psql.. 1) Removing table entries in hoststate : Delete from hoststate where host_id=xx 2) Removing table entries from hosts : Delete from hosts where host_id=xx And restart ambari-server
... View more
08-23-2016
11:37 AM
2 Kudos
You have a "hoststate" and/or "hosts" table in ambari database which might have an entry of that hostsname which will give you that WARN [ambari-hearbeat-monitor] HeartbeatMonitor:154 - Heartbeat lost from host hostname" on every ambari-server restart is performed as it checks those tables. You might want to have a check if the entry exists then remove those entries by stopping the ambari-server and stopping the ambari-agent of those host which gives you that warning. Because if the ambari-agent is in running state then you will see the same issue again.
... View more
08-05-2016
03:57 AM
2 Kudos
Hi can you try this command: curl -u admin:admin -i -H 'X-Requested-By: ambari' -X DELETE http://AMBAIRHOST:8080/api/v1/clusters/CLUSTERNAME/services/HIVE
... View more