Skip to Main Content

Java Security

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

trying to install GoDaddy SSL certificate on Tomcat6...

843810Mar 3 2009 — edited Mar 6 2009
I 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.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 3 2009
Added on Mar 3 2009
3 comments
424 views