Member since
09-22-2017
1
Post
0
Kudos Received
0
Solutions
10-09-2018
05:08 PM
In Apache Ranger 0.6 the path is: url = http://<rangerHost>:<rangerPort>/service/public/v2/api/service/<YourServiceName>/policy/user=<YourUserName>; If you want to get the result on a pretty json format you can do: curl -u admin:admin -XGET $url | python -mjson.tool > output.json
... View more