[h2] Re: Connect to h2 server using SSL

2019-10-30 Thread Evgenij Ryazanov
Oracle disabled anonymous suits due to security reasons. https://bugs.openjdk.java.net/browse/JDK-8213090 You you can't use older JRE you need to create a key store and set system properties javax.net.ssl.keyStore and javax.net.ssl.keyStorePassword. -- You received this message because you are

[h2] Re: Connect to h2 server using SSL

2019-10-30 Thread 'Christian Buchegger' via H2 Database
Hi, I did some more tests using different JDKs now. With jdk1.8.0_151 which you are using in the Travis build I do not see this exception either. However with the jdk1.8.0_202 this exception occurs. I have attached a standalone testcase with SSL debug enabled, as the test in

[h2] Re: Connect to h2 server using SSL

2019-10-23 Thread Evgenij Ryazanov
Hello. H2 uses the anonymous SSL by default on older Java versions up to 10, unless a security manager prevents it. It also doesn't work on Java 11+ due to changes in JDK. https://github.com/h2database/h2database/issues/1303 I have multiple installations of different versions of Java, and in