Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

​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