tomcat 7 SSL issue
by andrewm659 from LinuxQuestions.org on (#6K310)
Hello I'm working with a friend on an old ubuntu 14 server running tomcat 7. We can't get the SSL to work with tomcat 7. It is a wildcard certificate.
I have the SSL set up in my /etc/tomcat/server.xml
<Connector protocol="org.apache.coyote.http11.Http11NioProtocol"
port="8443" SSLEnabled="true" maxThreads="200"
scheme="https" secure="true"
SSLCertificateFile="/etc/ssl/path/to/SSL.crt"
SSLCertificateKeyFile="/etc/ssl/path/to/priv.key"
SSLCertificateChaineFile="/etc/ssl/intermediate_or_chain/SectigoRSADomainValidationSecureServerCA.crt"
clientAuth="false" sslProtocol="TLS" />
However it is not working. I don't have any war/jar running at the moment.
Not sure what I am doing wrong.
There are no errors in the logs that I can see that would point to something. I have tried ther sample application and it will not work with that.
It has been a while since I have done a complex configuration on tomcat.
I have the SSL set up in my /etc/tomcat/server.xml
<Connector protocol="org.apache.coyote.http11.Http11NioProtocol"
port="8443" SSLEnabled="true" maxThreads="200"
scheme="https" secure="true"
SSLCertificateFile="/etc/ssl/path/to/SSL.crt"
SSLCertificateKeyFile="/etc/ssl/path/to/priv.key"
SSLCertificateChaineFile="/etc/ssl/intermediate_or_chain/SectigoRSADomainValidationSecureServerCA.crt"
clientAuth="false" sslProtocol="TLS" />
However it is not working. I don't have any war/jar running at the moment.
Not sure what I am doing wrong.
There are no errors in the logs that I can see that would point to something. I have tried ther sample application and it will not work with that.
It has been a while since I have done a complex configuration on tomcat.