This is happening randomly but seeing this exception during cache updates
Caused by: javax.net.ssl.SSLException: Unsupported record version
Unknown-10.6
This is what the configuration looks like. Using default values for Key
algorithm and protocols. All apps running under Java 1.8. Verbose output
from keytool shows certificate fingerprints:
MD5
SHA1
SHA256
Signature Algorithm: SHA1withRSA
private SslContextFactory initializeSecurity ()
{
SslContextFactory sslFactory = new SslContextFactory();
EncryptionHelper helper = new EncryptionHelper(seed);
char[] decrypted = helper.decrypt(keystoreValue).toCharArray();
if (isClientMode()) {
sslFactory.setKeyStoreFilePath(getKeystorePath() + "/" +
"ignite-client.jks");
sslFactory.setKeyStorePassword(decrypted);
sslFactory.setTrustManagers(SslContextFactory.getDisabledTrustManager());
} else {
sslFactory.setKeyStoreFilePath(getKeystorePath() + "/" +
"ignite-server.jks");
sslFactory.setKeyStorePassword(decrypted);
sslFactory.setTrustStoreFilePath(getKeystorePath() + "/" +
"ignite-trust.jks");
sslFactory.setTrustStorePassword(decrypted);
}
return sslFactory;
}
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Random-SSL-unsupported-record-version-tp8236.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.