Tomcat services is not starting after enabling SSL.
My application is hosted in one of the server in apache tomcat but in http 8080 port. I want to enable https for my application.
I generated key using the following commannd
"%JAVA_HOME%\bin\keytool" -genkey -alias tomcat -keyalg RSA -keystore C:\Users\app.keystore
and I changed my server.xml connector from
<Connector acceptCount="100"
connectionTimeout="20000"
executor="tomcatThreadPool"
maxKeepAliveRequests="15"
port="${bio.http.port}"
protocol="org.apache.coyote.http11.Http11Protocol"
redirectPort="${bio.https.port}"/>
to
<Connector
protocol="org.apache.coyote.http11.Http11Protocol"
port="8443" maxThreads="200"
scheme="https" secure="true" SSLEnabled="true"
keystoreFile="C:\Users\app.keystore" keystorePass="changeit"
clientAuth="false" sslProtocol="TLS"/>
But the services are not starting after changing it.
Appreciate your help. Thanks in advance!
catalina.logand others say? Anny Exceptions with stack traces? - Selaron