java - Tomcat configure SSL error ERR_SSL_VERSION_OR_CIPHER_MISMATCH -


i want app on tomcat accessed using https:// url.

for have followed these steps:

  1. generated keystore:

    keytool -genkey -alias tomcat -keyalg rsa -keystore amazon.keystore

  2. generated certificate request (csr file)

    keytool -certreq -keyalg rsa -alias tomcat -file certreq.csr -keystore amazon.keystore

  3. submitted certreq.csr file ca , received 4 file ca

addtrustexternalcaroot.crt

dv_usertrustrsacertificationauthority.crt

dv_networksolutionsdvserverca2.crt

my.domain.com.crt

  1. imported these 4 certificates in amazon.keystore

keytool -import -trustcacerts -alias roo t -file addtrustexternalcaroot.crt -keystore amazon.keystore

enter keystore password:

certificate exists in system-wide ca keystore under alias

do still want add own keystore? [no]: yes

certificate added keystore

keytool -import -trustcacerts -alias int er1 -file dv_usertrustrsacertificationauthority.crt -keystore amazon.keystore

enter keystore password:

certificate added keystore

keytool -import -trustcacerts -alias int er2 -file dv_networksolutionsdvserverca2.crt -keystore amazon.keystore

enter keystore password:

certificate added keystore

keytool -import -trustcacerts -alias tom cat -file my.domain.com.crt -keystore amazon.keystore

enter keystore password:

certificate added keystore

  1. added connector in tomcat server.xml file

  2. restart tomcat.

after when tried access tomcat using htts://my.domain.com:8443 getting error in google chrome

err_ssl_version_or_cipher_mismatch

unsupported protocol client , server don't support common ssl protocol version or cipher suite.

i have searched web lot none of given solutin worked me. don't know root cause error.

can 1 suggest me possible cause error?

i have installed tomcat 8.5 on windows server 2012 r2. (here in command , url replaced domain name dummy name my.domain.com)


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -