Member since
07-25-2016
16
Posts
6
Kudos Received
0
Solutions
12-08-2016
10:37 PM
1 Kudo
From the stray quote in your exception, it would seem like something in your client program (the com.install4j.runtime.launcher.UnixLauncher class invocation script, the com.attivio.commandline.CommandLineRunner, etc.) has incorrectly set the JDK used system property of "https.protocols" to a value of "TLSv1" with the quotes partially included. if there is an override of "https.protocols" required on your JDK (such as is needed for using TLSv1.2 in JDK7 environments [1]) then please modify it to pass the value correctly without the quote wrapped around it. For ex. this is a good way to set it: -Dhttps.protocols=TLSv1.2 But this isn't gonna work: -Dhttps.protocols="TLSv1.2" From your error, if I were to guess, it seems to instead be set to something like: -Dhttps.protocols="TLSv1,2", which gives rise to the literal error of java.lang.IllegalArgumentException: "TLSv1 [1] - https://blogs.oracle.com/java-platform-group/entry/diagnosing_tls_ssl_and_https X-Refs: http://hg.openjdk.java.net/jdk8/jdk8/jdk/file/687fd7c7986d/src/share/classes/sun/net/www/protocol/https/HttpsClient.java#l161 and http://hg.openjdk.java.net/jdk8/jdk8/jdk/file/687fd7c7986d/src/share/classes/sun/security/ssl/ProtocolVersion.java#l164
... View more
04-30-2018
07:46 PM
I am also getting the same error while stopping the application using slider on clouder cluster with Kerberos enabled. But I could able to launch an application without any issues. What could be the possible issue?.
... View more