Member since
10-01-2018
802
Posts
143
Kudos Received
130
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3072 | 04-15-2022 09:39 AM | |
| 2475 | 03-16-2022 06:22 AM | |
| 6554 | 03-02-2022 09:44 PM | |
| 2907 | 03-02-2022 08:40 PM | |
| 1916 | 01-05-2022 07:01 AM |
01-09-2021
07:58 AM
@Anks2411 This could be a bug since it's an older CM version but looking at the logs this seems issue with alternatives. Can you try these steps and let me know if this improves the behaviour. 1. Stop all roles on the host. 2. Stop the agent. 3. Ensure that the agent and supervisord are fully stopped. 4. Verify the output of the follow command and ensure that it only captures information related to cloudera. \ls -l /etc/alternatives/ | grep "\/opt\/cloudera" 5. Run the following shell script to cleanup and remove all alternatives related to cloudera parcels. $ \ls -l /etc/alternatives/ | grep "\/opt\/cloudera" | awk {'print $9'} | \ while read m; do if [[ -e /var/lib/alternatives/${m} ]] ;then echo "Removing ${m}"; \ rm -fv /var/lib/alternatives/${m} ; fi; rm -fv /etc/alternatives/${m}; done 6. Start the agent and review the log data in /var/log/cloudera-scm-agent/cloudera-scm-agent.log. You should see the agent attempt to create new alternatives for your parcels. 7. Verify where the alternative point and restart the roles on the host. Feel free to keep us updated here.
... View more
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-09-2021
06:11 AM
1 Kudo
@raghu9raghavend This error is coming due the the Kerberos Authentication is configured for your RM UI. You have 2 options: 1. Configure Browsers for Kerberos Authentication (Recommended) 2. Disable the Kerberos Authentication for Web UI from service configuration. CM > Yarn > Configuration > Enable Kerberos Authentication for HTTP Web-Consoles > Disable/uncheck this option and restart Yarn.
... 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-06-2021
12:25 AM
@Olgaraa Is this port (60000) open? Can you disable firewall and see again?
... View more
01-06-2021
12:24 AM
@Mondi This seems a Network issue within your hosts. You can try below solution if helps. Disable P2P (below) for parcels to distribute.
1. Login to Cloudera Manager as Admin
2. Navigate to: (Hosts > All Hosts > Configuration)
3. Search for: "P2P Parcel Distribution Port"
4. Set P2P Parcel Distribution Port = 0
5. Save changes
6. Attempt to distribute parcels again
... View more
01-06-2021
12:22 AM
@Mondi That should not be an issue. You can add some number of nodes. Check the CM server logs top see the issue.
... 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
01-04-2021
01:11 AM
@HoldYourBreath You can use Azure and if that's not available for you then you can go for any other cloud providers like AWS or GCP, depending on your most feasible option.
... View more