Member since
04-03-2019
962
Posts
1743
Kudos Received
146
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 15021 | 03-08-2019 06:33 PM | |
| 6180 | 02-15-2019 08:47 PM | |
| 5101 | 09-26-2018 06:02 PM | |
| 12609 | 09-07-2018 10:33 PM | |
| 7449 | 04-25-2018 01:55 AM |
08-02-2016
11:10 PM
@Vaibhav Kumar - Can you please write a new question on this new error? I could see that reported issue got resolved. I have accepted answer by @Joy. Please post the new question on this error and you can tag in Joy or other people in there to get quick attention 🙂
... View more
07-31-2016
12:13 AM
PEBCAK! After restarting Hive services a couple of times, and then surrounding my URI with single quotes, it appears all good. First, made sure port 10001 is listening ... [root@sandbox hive]# netstat -tulpna|grep 10001 tcp 0 0 0.0.0.0:10001 0.0.0.0:* LISTEN 25819/java Then, attempted to connect with URI ... beeline -u jdbc:hive2://sandbox.hortonworks.com:10001/default;transportMode=http;httpPath=cliservice Finally, succeeded with URI ... beeline -u 'jdbc:hive2://sandbox.hortonworks.com:10001/default;transportMode=http;httpPath=cliservice'
... View more
12-14-2017
04:03 AM
https://community.hortonworks.com/articles/52877/oozie-shell-action-run-hivetez-query-in-shell-scri.html
... View more
01-25-2018
06:40 AM
Hi @Kuldeep Kulkarni Does this tutorial still work with Ambari 2.6?
... View more
08-01-2018
03:57 AM
Hi @Kalyan Das , I think its better to create a new community thread for the issue you are facing . it will be easily viewable by other community users for which they are willing to help . Comments here wont allow posting screenshots and other things.
... View more
07-28-2016
09:17 AM
Is the issue resolved?
... View more
07-26-2016
04:34 PM
@Sai ram - No you cann't. But you can write a shell action and in shell script you can execute this command as well as mail command
... View more
07-21-2016
11:40 PM
2 Kudos
This tutorial has been successfully tried on HDP-2.4.2.0 and Ambari 2.2.2.0 . I have my HDP Cluster Kerberized with Namenode HA. . Please follow below steps for Configuring File View on Kerberized HDP Cluster. . Step 1 - Please configure your Ambari Server for Kerberos with the steps mentioned in below article. Please follow steps 1 to 5. https://community.hortonworks.com/articles/40635/configure-tez-view-for-kerberized-hdp-cluster.html . Step 2 - Please add below properties to core-site.xml via Ambari UI and restart required services. . Note - If you are running Ambari Server as root user then add below properties hadoop.proxyuser.root.groups=*
hadoop.proxyuser.root.hosts=* . If you are running Ambari server as non-root user then please add below properties in core-site.xml hadoop.proxyuser.<ambari-server-user>.groups=*
hadoop.proxyuser.<ambari-server-user>.hosts=* Please replace <ambari-server-user> with user running Ambari Server in above example. . I'm assuming that your ambari server principal is ambari-server@REALM.COM, if not then please replace 'ambari-server' with your principal's user part. hadoop.proxyuser.ambari-server.groups=*
hadoop.proxyuser.ambari-server.hosts=* . Step 3 - Create user directory on hdfs for the user accessing file view. For e.g. in my case I'm using admin user to access file view. . sudo -u hdfs hadoop fs -mkdir /user/admin
sudo -u hdfs hadoop fs -chown admin:hdfs /user/admin
sudo -u hdfs hadoop fs -chmod 755 /user/admin . Step 4 - Goto Admin tab --> Click on Manage Ambari --> Views --> Edit File view ( Create a new one if it doesn't exist already ) and configure settings as given below . Note - You may need to modify values as per your environment settings! . . After above steps, you should be able to access your file view without any issues. If you receive any error(s) then please check /var/log/ambari-server/ambari-server.log for more details and troubleshooting. . . Please comment if you have any feedback/questions/suggestions. Happy Hadooping!!
... View more
Labels:
07-20-2016
09:49 PM
@Sunile Manjee - Thanks for the info, I'm aware that we can do this using API, as @John Martin wanted to do this while installing HDP cluster hence suggested to put in configs section of ambari blueprint.
... View more
07-20-2016
06:09 PM
@Kuldeep Kulkarni great stuff. I find myself getting this confused as well.
... View more