Java8

时间:2018-06-14 18:26:22

标签: ssl ssl-certificate tomcat7 tls1.2 symantec

  

Java版本 - 1.8

     

我们在Apache Tomcat Server上托管了我们的站点(用Java开发)。   此外,我们必须使用SSL协议作为TLS1.1或更高版本。

     

这些设置在Tomcat配置中提供,如下所示:

 <!-- [This is the Tomcat Configuration] --/>
    <Connector URIEncoding="UTF-8" acceptCount="250" 
     connectionTimeout="90000" disableUploadTimeout="true" enableLookups="false" 
    maxHttpHeaderSize="8192" maxKeepAliveRequests="-1" maxThreads="500" minSpareThreads="50"        port="443"
    protocol="org.apache.coyote.http11.Http11Protocol" 
    SSLEnabled="true"
      keystoreFile="C:\Program Files\Java\jre1.8.0_51\bin\mykeystore.keystore
           keystorePass="********"
           scheme="https" 
    secure="true"
           clientAuth="false" 
    sslProtocol="TLS" sslEnabledProtocols="TLSv1.1,TLSv1.2" 
    ciphers="TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA" />
  

Error displayed when I hit the url after installing certificates to Java Keystore

0 个答案:

没有答案