Member since
04-13-2016
422
Posts
150
Kudos Received
55
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1931 | 05-23-2018 05:29 AM | |
| 4963 | 05-08-2018 03:06 AM | |
| 1685 | 02-09-2018 02:22 AM | |
| 2713 | 01-24-2018 08:37 PM | |
| 6164 | 01-24-2018 05:43 PM |
05-27-2016
03:02 AM
2 Kudos
@Abdul Shihab Go to edge node, sudo to hdfs user Get a valid kerberos ticket Run this below command hdfs haadmin -failover [--forceactive] <serviceId> <serviceId>] Example: hdfs haadmin -failover -forceactive namenode1(active) namenode1(standby) If you want to do it from Ambari just restart active namenode, during this process it will make standby as active and after restarted namenode came up it will move to standby but this is not recommended best practice
... View more
05-27-2016
02:19 AM
3 Kudos
@Venkata Sridhar Gangavarapu May I know on which user ambari server installed? root or some other user? If root please add below properties: LINK hadoop.proxyuser.root.groups=*
hadoop.proxyuser.root.hosts=* 1. If your cluster is Kerberosed then follow below steps: Go to Hive Service --> Configs --> General and change below property to hive.server2.thrift.sasl.qop = auth-conf Restart all the affected services to make sure changed are set. Then go to Ambari Views server, Manage Ambari --> Hive View --> Setting HiveAuthentication= auth=KERBEROS;principal=hive/_HOST@EXAMPLE.COM;hive.server2.proxy.user=${username};saslQop=auth-conf Let me know if this helps you.
... View more
05-26-2016
04:19 PM
@Ravi Mutyala Got you, Ravi. Hadoop will run on the name but not on the UID. Whatever that UID it might be Hadoop doesn't care in the processing/operations.
... View more
05-25-2016
11:37 PM
2 Kudos
yarn user does not have access REASON:
Tez view was trying to connect to am over port 8088 and did not have enough privileges to access the am. SOLUTION: <property>
<name>tez.am.view-acls</name>
<value>*</value>
<description>AM view ACLs. This setting enables the specified users or groups to view the status of the AM and all DAGs that run within the AM.</description>
</property> Now I can see query while executing at the bottom. Issue go fixed.
... View more
05-25-2016
08:18 PM
@Ravi Mutyala Thanks Ravi, If I got for local accounts like HDFS etc.., will the UID will same for all the machines with respect to that user? If I have to add a new machine how will that UID will effect?
... View more
05-25-2016
02:21 PM
@bsaini Thanks for your response. May I know which is the best practice for security reason.?
... View more
05-25-2016
02:36 AM
1 Kudo
Hi, Which is better to create
Hadoop accounts in LDAP/AD or locally?
... View more
Labels:
- Labels:
-
Apache Hadoop
05-25-2016
01:44 AM
@Rushi This link might help you: https://community.hortonworks.com/questions/35060/issue-with-hive-view-made-all-the-changes-related.html#answer-35073
... View more
05-24-2016
12:05 AM
2 Kudos
Below steps have fixed the issue: 1. If your cluster is Kerberosed then follow below steps: Go to Hive Service --> Configs --> General and change below property to hive.server2.thrift.sasl.qop = auth-conf Restart all the affected services to make sure changed are set. Then go to Ambari Views server, Manage Ambari --> Hive View --> Setting Hive Authentication = auth=KERBEROS;principal=hive/_HOST@EXAMPLE.COM;hive.server2.proxy.user=${username};saslQop=auth-conf 2. If your cluster is not Kerberosed the follow below steps: Go to Hive Service --> Configs --> General and change below property to hive.server2.thrift.sasl.qop = auth Restart all the affected services to make sure changed are set. Then go to Ambari Views server, Manage Ambari --> Hive View --> Setting Hive Authentication = auth=KERBEROS;principal=hive/_HOST@EXAMPLE.COM;hive.server2.proxy.user=${username};saslQop=auth This should fix your above error message issue.
... View more
05-23-2016
11:54 PM
2 Kudos
Below steps has fixed the issue: 1. If your cluster is Kerberosed then follow below steps: Go to Hive Service --> Configs --> General and change below property to hive.server2.thrift.sasl.qop = auth-conf Restart all the affected services to make sure changed are set. Then go to Ambari Views server, Manage Ambari --> Hive View --> Setting Hive Authentication = auth=KERBEROS;principal=hive/_HOST@EXAMPLE.COM;hive.server2.proxy.user=${username};saslQop=auth-conf 2. If your cluster is not Kerberosed the follow below steps: Go to Hive Service --> Configs --> General and change below property to hive.server2.thrift.sasl.qop = auth Restart all the affected services to make sure changed are set. Then go to Ambari Views server, Manage Ambari --> Hive View --> Setting Hive Authentication = auth=KERBEROS;principal=hive/_HOST@EXAMPLE.COM;hive.server2.proxy.user=${username};saslQop=auth This should fix your above error message issue.
... View more