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 |
10-22-2016
04:15 PM
I have verified by adding above missing properties, hbase startup is successful and things look good. Please try and confirm.
... View more
10-22-2016
03:13 PM
@Deepak Sharma Looking at the kerberosAuthenticationHandler code(at line number 183), seems like your configuration has missing properties. Please add below props and let me know if it works.. <property>
<name>hbase.rest.authentication.kerberos.principal</name>
<value>HTTP/_HOST@HADOOP.LOCALDOMAIN</value>
</property>
<property>
<name>hbase.rest.authentication.kerberos.keytab</name>
<value>$KEYTAB</value>
</property> For more information, please refer to https://hbase.apache.org/book.html#security.example.config.
... View more
10-22-2016
02:10 PM
2 Kudos
@Deepak Sharma I guess you are using the service principals in your configuration. Can you try using spnego principal and keytabs as mentioned below.. <property>
<name>hbase.rest.authentication</name>
<value>kerberos</value>
<description^>Enter the authentication method for the REST server.</description>
</property>
<property>
<name>hbase.rest.kerberos.spnego.principal</name>
<value>HTTP/_HOST@EXAMPLE.COM</value>
<description>Enter the hostname of the principal.</description>
</property>
<property>
<name>hbase.rest.keytab.file</name>
<value>/etc/security/keytabs/spnego.service.keytab</value>
<description>Enter the location of the keytab.</description>
</property>
... View more
10-20-2016
04:37 PM
2 Kudos
@Roland Simonis Please refer to the ranger user guide for the detailed information. https://cwiki.apache.org/confluence/display/RANGER/Apache+Ranger+0.5+-+User+Guide Hope this helps.
... View more
10-20-2016
03:39 PM
@Bhupesh Khanna Please provide more details about your cluster. Is your cluster kerberized? Is ranger enabled? which version of HDP you have installed?
... View more
10-20-2016
03:35 PM
@Jasper
I guess there is a typo in the body of the request, you have an extra space before Struct, please modify it and try. Let us know if it works after this change. "org.apache.atlas.typesystem.json.InstanceSerialization$_ Struct"
... View more
10-18-2016
02:58 PM
2 Kudos
@Varma vetukuri Below is an example to create sample kafka policy in ranger. curl -iv -k -u <user:password> -H "Content-Type: application/json" -X POST https://<RANGER_HOST>:6182/service/public/v2/api/policy -d '{"allowExceptions": [],"denyExceptions": [],"denyPolicyItems":[],"description": "My first Kafka policy","isAuditEnabled": true,"isEnabled": true,"name": "kafka_policy_1","policyItems": [{"accesses": [{"isAllowed": true,"type": "consume"}],"conditions": [],"delegateAdmin": false,"groups": ["mygroup"],"users": []}],"resources": {"topic": {"isExcludes": false,"isRecursive": false,"values": ["ambari_kafka_service_check"]}},"service": "MYCLUSTER_kafka","version": 1}'
... View more
10-18-2016
07:02 AM
There is no support for that in HDP-2.3.4, you need to upgrade to HDP-2.5 which comes with ATLAS-0.7.
... View more
10-18-2016
06:48 AM
3 Kudos
@PARIVALLAL R which HDP/Atlas version you are working with? Atlas 0.7 has the change to display entity names instead of GUID.
... View more