Hi All, I am stuck, any idea how to enable tomcat SSL on linux ? I have configured tomcat on windows machine and its working perfectly. However when i tried to port my configurations (server.xml) on linux machine, it refuses to work. I am listing down a very simple SSL configuration below:
<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 --> <Connector port="80" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" /> <!-- Define a SSL HTTP/1.1 Connector on port 8443 --> <Connector port="8443" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile=" keystore.store" keystorePass="secret"/> <!-- Define an AJP 1.3 Connector on port 8009 --> <Connector port="8009" enableLookups="false" redirectPort="8443" protocol="AJP/1.3" /> My certificate is setup properly. No exception, tomcat is listening properly on http. I have even tried disabling AJP connector but no use. Any idea? is there some special setup require to make it work ? Thanks -Azhar