Hello,
I purchased the certificate from Godaddy but I am unable to integrate .
I am getting integration problem with SSL certificate with application server Tomcat 6.0.
I followed the Installing an SSL Certificate in Tomcat 4.x/5.x/6.x
Installation Option Two: Install the SSL Certificate and Intermediate Certificate Separately
Installing Root and Intermediate Certificates but unable to to do that .
getting exception :
SEVERE: Socket accept failed
java.net.SocketException: SSL handshake errorjavax.net.ssl.SSLException: No available certificate or key corresponds to the SSL cipher suites which are enabled.
at org.apache.tomcat.util.net.jsse.JSSESocketFactory.acceptSocket(JSSESocketFactory.java:150)
at org.apache.tomcat.util.net.JIoEndpoint$Acceptor.run(JIoEndpoint.java:310)
at java.lang.Thread.run(Thread.java:595)
For your Refernce : I am editing in 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="webapps/tomcat.keystore"
keystorePass="ttadmin"
clientAuth="false" sslProtocol="TLS"/>
using following commands....
keytool -import -alias root -keystore c:\tomcat.keystore -trustcacerts -file c:\gd_bundle.crt
keytool -import -alias cross -keystore c:\tomcat.keystore -trustcacerts -file c:\gd_cross_intermediate.crt
keytool -import -alias intermed -keystore c:\tomcat.keystore -trustcacerts -file c:\gd_intermediate.crt
keytool -import -alias tomcat -keystore c:\tomcat.keystore -trustcacerts -file c:\customer.telelogix.net.crt
Please suggest me ....
Regards,
Praveen
I purchased the certificate from Godaddy but I am unable to integrate .
I am getting integration problem with SSL certificate with application server Tomcat 6.0.
I followed the Installing an SSL Certificate in Tomcat 4.x/5.x/6.x
Installation Option Two: Install the SSL Certificate and Intermediate Certificate Separately
Installing Root and Intermediate Certificates but unable to to do that .
getting exception :
SEVERE: Socket accept failed
java.net.SocketException: SSL handshake errorjavax.net.ssl.SSLException: No available certificate or key corresponds to the SSL cipher suites which are enabled.
at org.apache.tomcat.util.net.jsse.JSSESocketFactory.acceptSocket(JSSESocketFactory.java:150)
at org.apache.tomcat.util.net.JIoEndpoint$Acceptor.run(JIoEndpoint.java:310)
at java.lang.Thread.run(Thread.java:595)
For your Refernce : I am editing in 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="webapps/tomcat.keystore"
keystorePass="ttadmin"
clientAuth="false" sslProtocol="TLS"/>
using following commands....
keytool -import -alias root -keystore c:\tomcat.keystore -trustcacerts -file c:\gd_bundle.crt
keytool -import -alias cross -keystore c:\tomcat.keystore -trustcacerts -file c:\gd_cross_intermediate.crt
keytool -import -alias intermed -keystore c:\tomcat.keystore -trustcacerts -file c:\gd_intermediate.crt
keytool -import -alias tomcat -keystore c:\tomcat.keystore -trustcacerts -file c:\customer.telelogix.net.crt
Please suggest me ....
Regards,
Praveen