Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

​How to find whether cluster is kerberized or non kerberized using ambari API

avatar
Rising Star

What is the ambari API to find whether the cluster is kerberized/non-kerberized

1 ACCEPTED SOLUTION

avatar

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"

  }

}

View solution in original post

2 REPLIES 2

avatar

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"

  }

}

avatar
Master Mentor

@nshetty

We can search for "security_type" = Kerberos from teh following API call:

http://AMBARI_HOST:8080/api/v1/clusters/CLUSTERNAME?fields=Clusters/security_type