6

I am trying to set jsse.enableSNIExtension property to false but each time when I try I get java manual.

java -Djsse.enableSNIExtension=false 

I had problem mentioned in here SSL handshake alert: unrecognized_name error since upgrade to Java 1.7.0

Any suggestion will be appreciated.

Community
  • 1
  • 1
mibzer
  • 664
  • 3
  • 9
  • 20
  • possible duplicate of [SSL handshake alert: unrecognized\_name error since upgrade to Java 1.7.0](http://stackoverflow.com/questions/7615645/ssl-handshake-alert-unrecognized-name-error-since-upgrade-to-java-1-7-0) – Lekensteyn Feb 14 '13 at 22:08

2 Answers2

14

Wicked late, but here:

System.setProperty ("jsse.enableSNIExtension", "false");
jn1kk
  • 5,012
  • 2
  • 45
  • 72
3

Execute the following in command line to run Jenkins war file which is present in "c:\Jenkins"

java -Djsse.enableSNIExtension=false -jar c:\Jenkins\jenkins.war
arvind123
  • 71
  • 2