Hi, I moved it to my production server(Linux).But I configured it to use SSL port 8443, But when I try calling url from browser (https://www.cogbooks.com) I get page not available error.Please see my below configuration
<Connector port="18080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="18443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" /> <!-- Note : To disable connection timeouts, set connectionTimeout value to 0 --> <!-- Note : To use gzip compression you could set the following properties : compression="on" compressionMinSize="2048" noCompressionUserAgents="gozilla, traviata" compressableMimeType="text/html,text/xml" --> <!-- Define a SSL HTTP/1.1 Connector on port 18443 --> <Connector port="18443" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" protocol="HTTP/1.1" SSLEnabled="true" enableLookups="false" disableUploadTimeout="true" acceptCount="100" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="/home/spy2k3/SSL/cogbooks_keystore" keystorePass="*******" /> Please help me to resolve this Thanks, Shyam ________________________________ From: MiB <[email protected]> To: Tomcat Users List <[email protected]> Sent: Thursday, 3 October 2013 5:43 PM Subject: Re: SSL Configuration with in Tomcat 3 okt 2013 06.09 Shyam Kumar: > Hi, > > Finally I got it worked in my tomcat5. > I removed <Factory> element and configured keystorefile and keystorepass in > <Connector> element. > Then It worked for me > > Thanks for your help > > *****Shyam***** Thanks Shyam for sharing your solution.
