Member since
03-14-2016
4721
Posts
1111
Kudos Received
874
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2825 | 04-27-2020 03:48 AM | |
| 5479 | 04-26-2020 06:18 PM | |
| 4661 | 04-26-2020 06:05 PM | |
| 3702 | 04-13-2020 08:53 PM | |
| 5604 | 03-31-2020 02:10 AM |
08-26-2019
11:09 PM
Thank you very much for your inputs.
... View more
08-26-2019
06:34 PM
@rvillanueva HDF and HDP versions can be different in a cluster. They need not to be exactly same. For example please refer to the https://supportmatrix.hortonworks.com/ Click on "HDP 3.1" (or click on desired HDF version like HDF 3.4.1.1) and then you will find the compatibility matrix with Ambari + HDF versions.
... View more
08-23-2019
12:53 PM
Perfect. Here's my solution based on your feedback. - name: Check if Ambari setup has already run command: grep 'jdbc' /etc/ambari-server/conf/ambari.properties register: ambari_setup_check check_mode: no ignore_errors: yes changed_when: no - name: Setup Ambari server command: printf '%s\n' y ambari y y n | ambari-server setup -j /usr/lib/jvm/java-8- openjdk-amd64 become: yes when: ambari_setup_check.rc == 1
... View more
08-22-2019
03:45 PM
Can we use Ambari_helper concept to write the script to delete dead nodes from Ambari. Can please guide where Can I get details about Ambari_helper classes?
... View more
08-22-2019
11:07 AM
Thanks, i didn't realized i am not actually logged at the moment
... View more
08-22-2019
07:56 AM
@Manoj690 There is no need to close a thread after you have solved your issue. Simply mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
08-21-2019
11:56 PM
@Manoj690 Better approach will be to change the PORT in yarn config from 53 to something unused. https://community.cloudera.com/t5/Community-Articles/YARN-REGISTRY-DNS-Port-Conflict-Issue/ta-p/249117
... View more
08-21-2019
05:24 PM
When your first post titled "Ambari-server start error" was caught by the spam filter, you created a second post with the same content. I approved one of them so we didn't have duplicate questions on the board.
I am unsure why your posts were flagged as spam. Our Community Admins are still tuning the spam filter rules after merging into the Unified Cloudera Community.
Our moderators will get posts out of spam quarantine as quickly as we are able. I apologize again for the inconvenience.
... View more
08-21-2019
05:31 AM
@Manoj690 Not the same output as mine. Please notice that, In your case that file is being owned by "root" user. Not the "hdfs" user. So please try this: # chown hdfs:hadoop /hadoop/hdfs/namenode/current/VERSION
(OR recursively)
# chown -R hdfs:hadoop /hadoop/hdfs/
... View more