Created on 03-21-2017 06:43 AM - edited 09-16-2022 04:17 AM
What is the ambari API to find whether the cluster is kerberized/non-kerberized
Created 03-21-2017 06:47 AM
you can use below ambari api
curl -k "https://xyz.com:8443/api/v1/clusters/cl1?fields=Clusters/security_type" -u admin:admin { "href" : "https://xyz.com:8443/api/v1/clusters/cl1?fields=Clusters/security_type", "Clusters" : { "cluster_name" : "cl1", "security_type" : "KERBEROS", "version" : "HDP-2.5" } }
Created 03-21-2017 06:47 AM
you can use below ambari api
curl -k "https://xyz.com:8443/api/v1/clusters/cl1?fields=Clusters/security_type" -u admin:admin { "href" : "https://xyz.com:8443/api/v1/clusters/cl1?fields=Clusters/security_type", "Clusters" : { "cluster_name" : "cl1", "security_type" : "KERBEROS", "version" : "HDP-2.5" } }
Created 03-21-2017 06:47 AM
We can search for "security_type" = Kerberos from teh following API call:
http://AMBARI_HOST:8080/api/v1/clusters/CLUSTERNAME?fields=Clusters/security_type