Member since
10-01-2018
802
Posts
144
Kudos Received
130
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3552 | 04-15-2022 09:39 AM | |
| 2870 | 03-16-2022 06:22 AM | |
| 7506 | 03-02-2022 09:44 PM | |
| 3457 | 03-02-2022 08:40 PM | |
| 2365 | 01-05-2022 07:01 AM |
01-09-2021
06:42 AM
2 Kudos
@ebeb From the logs seems like you are hitting a Java bug. This happens after upgrading the JDK version, on Open JDK versions after JDK8u262 this is due to: https://bugs.openjdk.java.net/browse/JDK-8230496 Resolution: Edit java.security file located in the active JDK on the clusters.
Add or alter sun.security.krb5.disableReferrals parameter, to ensure that the following is set to true:
sun.security.krb5.disableReferrals=true
You may find the Active JDK version being used by CDH by using the bigtop script to load the JAVA_HOME
source /opt/cloudera/parcels/CDH/bin/bigtop-detect-javahome
echo $JAVA_HOME
echo "sun.security.krb5.disableReferrals=true" >> $JAVA_HOME/jre/lib/security/java.security Restart the service.
... View more
01-09-2021
06:21 AM
@mig_aguir From the given yarn-site.xml file "yarn.nodemanager.local-dirs" You can change above property to point to new mount directory and post restart of Yarn service new application job will use this directory for storing. For safe side you can take a backup and store locally for time being if something goes wrong.
... View more
01-08-2021
04:34 AM
@doronve Both way will be fine. You can use either of them as per your convenience.
... View more
01-05-2021
11:06 PM
1 Kudo
@chhaya_vishwaka I guess your user is not having Power User Role which is required for this. Can you assign the correct role for this user and see if that works. For reference you can use this doc: https://docs.cloudera.com/management-console/cloud/user-management/topics/mc-understanding-roles-resource-roles.html https://docs.cloudera.com/management-console/cloud/user-management/topics/mc-understanding-cdp-user-accounts.html Let me know how it goes.
... View more
12-30-2020
10:18 AM
@Navyarani_A Looks like we have already gave you the answers here: https://community.cloudera.com/t5/Support-Questions/Paywall-also-for-CDH-6-3-x-and-open-source-availability/m-p/308500#M223583
... View more
12-30-2020
10:16 AM
@chhaya_vishwaka Can you check from the Web Developer tool while doing this operation and see if in console there is any issue appearing.
... View more
12-28-2020
06:04 AM
@PauloNeves You have to login with your user ID in my opinion and that should have a valid kerberos ticket if kerberos is enabled and then you can only list the tables you have access that should come using list tables. You can refer this cheat seat if this helps. http://hortonworks.com/wp-content/uploads/2016/05/Hortonworks.CheatSheet.SQLtoHive.pdf
... View more
12-28-2020
05:56 AM
1 Kudo
@Navyarani_A See the similar discussion here: https://community.cloudera.com/t5/Support-Questions/Paywall-also-for-CDH-6-3-x-and-open-source-availability/m-p/306682/highlight/true#M222959
... View more
12-28-2020
05:13 AM
@syedshakir This is most probably ssh is not setup properly. You can try below steps. On the Oozie Server host run the command: ps -ef| grep oozie Identify the user that runs the Oozie server. For example, the user is oozie Modify /etc/passwd file to edit the user oozie Change: oozie:x:485:483:Oozie User:/var/lib/oozie:/bin/false to: oozie:x:485:483:Oozie User:/var/lib/oozie:/bin/bash Note: This will enable the user oozie to login. In the command prompt switch user as oozie: su - oozie Verify that the user is switched by executing the command: id Execute ssh-keygen: Note:Do not give any password. This generates Public and Private Key for passwordless authentication and saves it in the Oozie user's home directory. ssh-keygen Execute ssh-copy-id to copy the public key to user’s home directory in the remote host. This user will be the one that runs ssh commands in remote host: ssh-copy-id -i /home/oozie/.ssh/id_rsa.pub cloudera@example.local.com Test by executing ssh without a password to confirm a successful authentication: ssh cloudera@example.local.com Run the Oozie workflow and verify success.
... View more
12-20-2020
06:24 AM
@Mondi you can follow below doc for reference. All you have to do is modify the db.properties file and point to the server which is having CM DB installed. https://docs.cloudera.com/documentation/enterprise/latest/topics/cm_ig_mysql.html#cmig_topic_5_5
... View more