- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
REST API to assign Sandbox roles to Ambari users
- Labels:
-
Apache Ambari
Created ‎08-17-2016 05:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I can see 5 new Sandbox roles - Cluster Administrator, Cluster Operator, Service Administrator, Service Operator, Cluster User. Can someone please tell me the REST API to assign these roles to Ambari users? I tried retrieving roles through this call:
curl -iv -u admin:admin -X GET http://ambari-server:8080/api/v1/roles
but this seems broken. Please help.
Created ‎08-17-2016 06:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can use below api :
curl -iv -u admin:admin -H "X-Requested-By: ambari" -X POST -d '[{"PrivilegeInfo":{"permission_name":"SERVICE.OPERATOR","principal_name":"testuser","principal_type":"USER"}}]' https://<ambari_host>:8080/api/v1/clusters/<cluster_name>/privileges
permission_name could be one of the below :
CLUSTER.ADMINISTRATOR
CLUSTER.OPERATOR
SERVICE.ADMINISTRATOR
SERVICE.OPERATOR
CLUSTER.USER
principal_type could be either : USER or GROUP
Created ‎08-17-2016 06:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can use below api :
curl -iv -u admin:admin -H "X-Requested-By: ambari" -X POST -d '[{"PrivilegeInfo":{"permission_name":"SERVICE.OPERATOR","principal_name":"testuser","principal_type":"USER"}}]' https://<ambari_host>:8080/api/v1/clusters/<cluster_name>/privileges
permission_name could be one of the below :
CLUSTER.ADMINISTRATOR
CLUSTER.OPERATOR
SERVICE.ADMINISTRATOR
SERVICE.OPERATOR
CLUSTER.USER
principal_type could be either : USER or GROUP
Created ‎08-17-2016 06:50 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The principal_name should be a kerberos principal? Because my Sandbox is not kerberized.
Created ‎08-17-2016 08:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Its not kerberos principle. Its the 'username' to which you want to grant the respective role.
For example above api call grants 'SERVICE.OPERATOR' role to 'testuser'.
Created ‎08-17-2016 08:07 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It is giving me below exception:
* About to connect() to sandbox.hortonworks.com port 8080 (#0)
* Trying 10.0.2.15... connected
* Connected to sandbox.hortonworks.com (10.0.2.15) port 8080 (#0)
* Initializing NSS with certpath: sql:/etc/pki/nssdb
* CAfile: /etc/pki/tls/certs/ca-bundle.crt
CApath: none
* NSS error -12263
* Closing connection #0
* SSL connect error
curl: (35) SSL connect error
Created ‎08-17-2016 08:12 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Created ‎08-17-2016 08:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I didnt mean that. Its not compulsory for this operation. The api end point which I provided should grant the necessary role.
But the issue which you are facing might be due to some corrupted configs and need to be debugged further.
Can you please post the output of /var/log/ambari-server/ambari-server.log
