Member since
09-11-2015
269
Posts
281
Kudos Received
55
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 4189 | 03-15-2017 07:12 AM | |
| 2505 | 03-14-2017 07:08 PM | |
| 3028 | 03-14-2017 03:36 PM | |
| 2482 | 02-28-2017 04:32 PM | |
| 1713 | 02-28-2017 10:02 AM |
02-13-2017
05:26 PM
Could you please post this as a different question? This helps to get visibility of the issue to the entire community.
... View more
02-13-2017
06:01 AM
1 Kudo
@samarth srivastava REST API to create user group is "/service/xusers/secure/groups", Please refer to the below example on the usage. curl -v -u '<username>:<password>' 'http://<ranger_host_address>:<ranger_port>/service/xusers/secure/groups' -H 'X-XSRF-HEADER: ""' -H 'Content-Type: application/json' -H 'X-Requested-With: XMLHttpRequest' --data-binary '{"name":"temporary-group","description":"test"}' The request payload contains the user group name and description info.
... View more
02-13-2017
06:01 AM
1 Kudo
@samarth srivastava REST API to create user group is "/service/xusers/secure/groups", Please refer to the below example on the usage. curl -v -u '<username>:<password>' 'http://<ranger_host_address>:<ranger_port>/service/xusers/secure/groups' -H 'X-XSRF-HEADER: ""' -H 'Content-Type: application/json' -H 'X-Requested-With: XMLHttpRequest' --data-binary '{"name":"temporary-group","description":"test"}' The request payload contains the user group name and description info.
... View more
02-10-2017
03:11 PM
Ok. I see that atlas is not running from command output. So, just remove the pid file of atlas and start it from ambari. rm /var/run/atlas/atlas.pid This should get the atlas started.
... View more
02-10-2017
01:48 PM
Can you please run the below command on the atlas host machine and paste the output here? ps aux | grep -i Atlas Also, please provide the output log when the service is started
... View more
02-10-2017
01:18 PM
1 Kudo
@Hitesh Rajpurohit How is Atlas started in first place? Is it started using ambari or manually? The error in the log says - the concerned user whoever is trying to restart atlas does not have permissions to stop the atlas service. This could happen in cases when atlas is started using some other user.
... View more
02-08-2017
08:04 PM
1 Kudo
@Neil Watson There already exists a python client for hiveserver2, please use this recommended client. https://cwiki.apache.org/confluence/display/Hive/Setting+Up+HiveServer2#SettingUpHiveServer2-PythonClientDriver
... View more
02-08-2017
05:27 PM
1 Kudo
@nick _ It is possible that zookeeper has that corresponding znode for that table and restricting to create the table. So, I would suggest, open the zookeeper client terminal and delete the hbase table znode entry using this command "rmr /hbase/table/TABLE_NAME" . After that restart hbase service(both master+region servers) and try recreating the table. This should resolve the issue.
... View more
02-08-2017
05:16 PM
2 Kudos
@subash sharma Please refer to the "Associating Trait Instances to Entities" section under this technical user guide usage guide provided here: http://atlas.incubator.apache.org/AtlasTechnicalUserGuide.pdf This will give an example of how to associate a trait/tag to an entity using REST API.
... View more
02-08-2017
11:19 AM
1 Kudo
@Bilal Arshad
To access any API through command line you need authenticate with the Atlas. For example: Since atlas comes with default users you can use the below command to get the version. curl -v -u admin:admin http://localhost:21000/api/atlas/admin/version In the above command username is admin and password is admin
... View more