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:
generated
keystore
:keytool -genkey -alias tomcat -keyalg rsa -keystore amazon.keystore
generated certificate request (csr file)
keytool -certreq -keyalg rsa -alias tomcat -file certreq.csr -keystore amazon.keystore
submitted
certreq.csr
file ca , received 4 file ca
addtrustexternalcaroot.crt
dv_usertrustrsacertificationauthority.crt
dv_networksolutionsdvserverca2.crt
my.domain.com.crt
- 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
added connector in tomcat server.xml file
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
Post a Comment