Member since
03-14-2016
4721
Posts
1111
Kudos Received
874
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2507 | 04-27-2020 03:48 AM | |
| 4974 | 04-26-2020 06:18 PM | |
| 4056 | 04-26-2020 06:05 PM | |
| 3287 | 04-13-2020 08:53 PM | |
| 5013 | 03-31-2020 02:10 AM |
03-09-2018
11:26 AM
@maha Rm Ambari 2.2.0 is really too old. The latest ambari version is 2.6.1.5 So if you are planning to upgrade ambari then that is really best as it has many enhancements , better performance, and lots of bug fixes. https://docs.hortonworks.com/HDPDocuments/Ambari-2.6.1.5/bk_ambari-upgrade/content/ambari_upgrade_guide.html https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.4/bk_support-matrices/content/ch_matrices-ambari.html#ambari_stack
... View more
03-09-2018
11:23 AM
Thanks @Jay Kumar SenSharma ! The no_proxy was what was missing, but the curl -iv flag in this answer was what helped me figure out why it worked on one machine but not the other. So I put this as the accepted answer and gave the other one a vote.
... View more
03-09-2018
01:47 PM
1 Kudo
If you have some virtualization with fault tolerance option and shared storage (like VMware esxi, etc.) I will recommend you to install Ambari Server there.
... View more
03-08-2018
09:22 AM
@Soungno Kim This looks like a duplicate thread of: https://community.hortonworks.com/questions/176319/hiveserver2-does-not-start-after-installing-hdp-26-1.html?childToView=177172#answer-177172 Please close one.
... View more
03-08-2018
09:19 AM
@Soungno Kim Looks like the cause of failure is the following error. Diagnostics: ExitCodeException exitCode=2: tar: Removing leading `/' from member names
tar: Skipping to next header
gzip: /hadoopfs/fs1/yarn/nodemanager/filecache/60_tmp/tmp_tez.tar.gz: invalid compressed data--format violated Can you please check if you are able to untar that file manually? (this is to verify if the tar archive is actually corrupted or not?) I am suspecting that the archive "/hadoopfs/fs1/yarn/nodemanager/filecache/60_tmp/tmp_tez.tar.gz" is corrupted. So can you please try clearing the filecache dir and then try again. .
... View more
08-29-2018
04:09 PM
I cope with the similar problem by using scp. command. Then I connect through ssh and add file to hdfs. scp -P 2201 <pathToLocalFile> root@127.0.0.1:~
... View more
03-08-2018
09:30 AM
1 Kudo
@Leonardo Apolonio You might be using Ambari 2.6.1.3 The "HostCleanup.py" script is moved to the following location: # ls -l /usr/lib/ambari-agent/lib/ambari_agent/HostCleanup.py
-rwxr-xr-x. 1 root root 22464 Feb 6 13:03 /usr/lib/ambari-agent/lib/ambari_agent/HostCleanup.py . For the change details review please refer to: https://issues.apache.org/jira/browse/AMBARI-22830 Changes can be seen here: https://github.com/apache/ambari/pull/229/files
... View more
03-07-2018
05:32 AM
I stopped some services and I started what I need, Thanks for your answer.
... View more
03-05-2018
09:02 PM
1 Kudo
@Hpc Good to know that correcting the /etc/hosts entry resolved the issue. Regarding your later query "in the "/etc/hosts" file of each host machine, shall I
only set the hostname of the machine running the ambari-server service,
or shall I also write the hostname of the all hosts?" >>>> Every Node (host) which is part of the cluster need to resolved the hostname of ambari server which is needed for Ambari Server a nd Ambari Agent communication,Also other components as well needs to know the hostname of other clusternodes. For example the NameNode host should be able to resolve the hostnames of DataNodes , Similarly the ResourceManager should be able to resolve the hostname of all the NodeManager hosts ...etc Similarly the ambari service checks runs on different hosts ... So basically you should have the same every node of your cluster to be able to resolve each other. .
... View more