SSLException: Received fatal alert: illegal_parameter after Java 1.7 upgrade

前端 未结 1 1950
盖世英雄少女心
盖世英雄少女心 2021-01-06 08:43

Tomcat 7 upgrade from tomcat 5 while connecting to LDAP gives error :

main, READ: TLSv1 Alert, length = 2
main, RECV TLSv1 ALERT:  fatal, illegal_parameter
m         


        
相关标签:
1条回答
  • 2021-01-06 09:29

    Solution to this problem is:

    1. Disabling ecliptic curves with command: -Dcom.sun.net.ssl.enableECC=false

    2. Disabling server name extension: -Djsse.enableSNIExtension=false

    3. Installed unrestricted policy jar files.

    This resolved issue and I am able to run application.

    0 讨论(0)
提交回复
热议问题