Member since
07-30-2019
453
Posts
112
Kudos Received
80
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1444 | 04-12-2023 08:58 PM | |
3422 | 04-04-2023 11:48 PM | |
1005 | 04-02-2023 10:24 PM | |
2638 | 07-05-2019 08:38 AM | |
2713 | 05-13-2019 06:21 AM |
07-30-2018
05:29 AM
1 Kudo
Hi @jangchun lee, I see you are using ambari version 2.1.2 . Unfortunately this version of Ambari is very old and the support for workflow manager view is not there in this version . Ambari started providing workflow manager view from Ambari-2.4.0 version ( its tech preview in this version ) Source : https://docs.hortonworks.com/HDPDocuments/Ambari-2.4.0.0/bk_ambari-views/content/ch_workflow_designer_view.html Please accept this answer if this answers your query
... View more
07-27-2018
11:03 AM
@chaouki trabelsi It's not applicable in case you have access to the internet. you can start your installation from here : https://docs.hortonworks.com/HDPDocuments/Ambari-2.7.0.0/bk_ambari-installation/content/download_the_ambari_repo.html
... View more
07-27-2018
10:20 AM
1 Kudo
Hi @chaouki trabelsi , As per me Not everything you should follow But dont forget to disable ip tables no need to setup passwordless ssh ( but your own public key should be in your ~/.ssh/authorized_keys ) Others are not applicable for you i see. thanks, akhil
... View more
07-27-2018
06:17 AM
1 Kudo
Hi @L James , Thanks for the full stack trace. I was able to Figure out the issue. the issue is in the Underlying framework that yarn-ui deals with : moment-timezone-with-data-2010-2020 this is the Error you are facing : https://github.com/moment/moment-timezone/issues/294 You can actually fix this in the javascript side only you need to navigate to : /usr/hdp/3.0.0.0-1634/hadoop-yarn/webapps/ui2/assets/ find yarn-ui.js Copy it to your windows system, Format the code.find the line : var getDefaultTimezone = function getDefaultTimezone() { return moment.tz.guess() || defaultTz; }; change it to : var getDefaultTimezone = function getDefaultTimezone() {
var guess= defaultTz;
try{
guess =moment.tz.guess()
}catch (e){
console.log(e);
}
return guess || defaultTz;
}; Copy it back to /usr/hdp/3.0.0.0-1634/hadoop-yarn/webapps/ui2/assets/yarn-ui.js . Reload the webpage with Cntrl+shift+R (hard reload) or try in incognito mode. it has to work well. This issue might get fixed in next version of HDP. If you found this answer helpfull . please mark this as best answer and close this thread.
... View more
07-26-2018
07:01 PM
great . please accept your answer as best answer and close this threaad .
... View more
07-26-2018
12:11 PM
Hi @Gourav Gupta , I try this way of connecting and it works well beeline -u jdbc:hive2://mycluster.openstacklocal:10000 -n user1 -p pass Is this the answer you are searching for. Hope this helps
... View more
07-26-2018
11:58 AM
1 Kudo
Hi @L James, As you said it works in another browser fine. it can be a case some javascript files are cached in the browser. Can you try in incognito mode in Google Chrome and see if it works To open an incognito window, start Chrome and click the wrench icon in the top right corner of the screen.Click New Incognito Window and start browsing. Alternatively, you can press Ctrl+ Shift + N to bring up a new incognito window without entering the Chrome settings menu. Please let me know if this helps.
... View more
07-26-2018
11:53 AM
Hi @Gunar Mueller , The link you shared looks like a Doc bug from which Ubuntu-14 will be removed soon. Ambari-2.7.0 supports only ubuntu 16 version not ubuntu-14. Please upgrade your OS before performing an upgrade of ambari. Please mark this thread as resolved if it answers your question
... View more
07-26-2018
11:39 AM
Hi @forest lin , By the exception trace, I understand you are installing the HDP-2.6.5 in Ambari-2.5.x versions. Please correct if my understanding is not correct. Ambari-2.5.x versions are not supposed to work with HDP-2.6.4 + versions. but it can be working with following workaround. you need to remove the GPL-repo tag from VDF File , place the Hadoop lzo packages(GPL RELATED) inside of the cloned HDP repo only After placing the RPMs in the repo, the repo should be rebuilt so that the metadata includes them and yum can find everything. Also, rename the HDP-UTILS-1.1.0.22 to HDP-UTILS-1.1.0.21. i have once faced the same issue and tweaked in this way. Hope this works. If no if you can upgrade to Ambari-2.6.2 that will be best solution to upgrade to HDP-2.6.5
... View more
07-26-2018
10:09 AM
Hi @forest lin It looks like server-side validation of This URL's is failing. can you try to perform the operation with tailf of ambari-server.log you will know whats going wrong. [root@asnaik1 ~]# tail -f /var/log/ambari-server/ambari-server.log hope this helps.
... View more