trying to install GoDaddy SSL certificate on Tomcat6...
843810Mar 3 2009 — edited Mar 6 2009I created the keystore file:
keytool -import -alias root -keystore tomcat.keystore -trustcacerts -file gd_bundle.crt
keytool -import -alias cross -keystore tomcat.keystore -trustcacerts -file gd_cross_intermediate.crt
keytool -import -alias tomcat -keystore tomcat.keystore -trustcacerts -file www.website.com.crt
and in the server.xml:
Connector protocol="org.apache.coyote.http11.Http11Protocol"
port="443" minSpareThreads="5" maxSpareThreads="75"
enableLookups="true" disableUploadTimeout="true"
acceptCount="100" maxThreads="200"
scheme="https" secure="true" SSLEnabled="true"
keystoreFile="/home/usr..." keystorePass="changeit."
clientAuth="false" sslProtocol="TLS"/
and i get:
java.net.SocketException: SSL handshake errorjavax.net.ssl.SSLException: No available certificate or key corresponds to the SSL cipher suites which are enabled.