Hi!
I am getting the following error while trying to connect to the database: the server selected protocol version TLS10 is not accepted by client preferences TLS12
AE Version: 6.0
Java Version: OpenJDK 11
Hi!
I am getting the following error while trying to connect to the database: the server selected protocol version TLS10 is not accepted by client preferences TLS12
AE Version: 6.0
Java Version: OpenJDK 11
Hi!
Follow the steps below.
Option 1 (preferred): First, ensure security.overridePropertiesFile value in the java.security file is set to true (this is usually the default value).
Then, take the following steps:
Option 2: You can edit this value in java.security file directly. Search for the property jdk.tls.disabledAlgorithms. For OpenJDK 11, its contents will be similar to:
jdk.tls.disabledAlgorithms=SSLv3, TLSv1, TLSv1.1, RC4, DES, MD5withRSA, DH keySize < 1024, EC keySize < 224, 3DES_EDE_CBC, anon, NULL,
include jdk.disabled.namedCurves
By removing the TLSv1.1 and/or TLSv1 entries, you can re-establish those versions back to the list of usable versions within the JDK.