INSTALLATION DOCUMENTS BY RAVI

Sunday, July 21, 2019

OBIEE 12c Start Script Fails to Connect to the Node Manager with Error General SSLEngine Problem


After configuring SSL with Custom Identity and Trust Keystores and when we try to start the servers getting the below error


























Resolution:
To resolve this Invoke WLST with additional Java parameters that explicitly identify the Custom Trust KeyStore, as below
Backup the ORACLE_HOME/oracle_common/common/bin/wlst_internal.sh file







Edit the wlst_internal.sh file, add the Java parameters (either before or after the ${JVM_ARGS} entry)
From:  eval '"${JAVA_HOME}/bin/java"' ${JVM_ARGS} weblogic.WLST '"$@"'
To:

eval '"${JAVA_HOME}/bin/java"' ${JVM_ARGS} -Dweblogic.security.SSL.ignoreHostnameVerification=true -Dweblogic.security.CustomTrustKeyStoreType="JKS" -Dweblogic.security.TrustKeyStore=CustomTrust -Dweblogic.security.CustomTrustKeyStoreFileName="/u01/app/oracle/keystores/keystore.jks" weblogic.WLST '"$@"'






















Save and close the file.
Try to restart the servers again

































10 comments:

  Opatch reports 'Cyclic Dependency Detected' error when patching ODI   Issue: When applying a Patch Set Update (PSU) to WebLogic Se...