Member since
08-25-2017
21
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1922 | 07-15-2018 03:26 AM |
11-28-2021
09:22 PM
If you are facing issue Clock offset issue then there will be problem with your ntp is not in sync.
To resolve follow some commands
Check in which host it is giving problem go under that host through CLI and
1. systemctl status ntpd.service (For checking the status, if its not working the it showing Inactive message)
2. route -n copy the ntp server ip address (You will find under Destination column)
3. ntpdate <ntp server ip address>
4. systemctl start ntpd.service (for starting & syncing your host, after firing wait for sometime)
5. ntpstat (for checking whether it is synchronized or not it should be in synchronized)
after performing above steps your Clock offset issue will get resolved.
Regard,
... View more
12-07-2019
06:41 AM
Thank you so much for this. I was into this issue and tired to tinker around to check if its possible but couldnt get it done. Now that i have seen the way you did it, thanks guys with regards
... View more
08-27-2018
10:01 AM
Hi Tomas, I am using RHEL 7.1
... View more
07-29-2018
08:02 PM
1 Kudo
What version(s) of JDK/JRE are installed on the host that runs your NFS Gateway? Is it consistent with the other hosts? CDH/CM requires recent version(s) of Oracle JDK version 1.7 or version 1.8 to run: https://www.cloudera.com/documentation/enterprise/release-notes/topics/rn_consolidated_pcm.html#pcm_jdk and it is recommended to not keep multiple different version(s) of Java JRE/JDK installed.
... View more
07-24-2018
11:11 AM
1 Kudo
@martinbo, As mentioned by others, there are some options to ease the management of users and groups. Common ones are: 1 - SSSD, IPA, Centrify OS level integration so that application calls to the OS are handled by those apps to make queries to a central LDAP source. This requires a good deal of configuration, but it is a robust, enterprise-grade solution 2 - Manage your group and passwd files with automation tools like puppet, chef, etc. (mod once, "push out" changes to all hosts) 3 - Configure LdapGroupsMapping in HDFS so that hadoop services will do group lookups directly to LDAP. NOTE: If you intend on letting users run jobs directly on YARN, you will still need to create local users on each host with a NodeManager since contains require the os user to be present.
... View more
11-20-2017
09:27 PM
Thanks a lot.. This resolved the issue : ) I have one more doubt, If I get java heap size issue like, Caused by: java.lang.OutOfMemoryError: Java heap space when running any mapreduce job, how to increase the java heap size runtime? Does “-Dmapreduce.map.java.opts=-Xmx2048m” this really do something there? I dint find any changes. Could you please advice the best way to increase java heap size? Thanks in advance
... View more