Created 01-09-2021 06:42 AM
@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.