We are running Tomcat 5.0.25, AIX 5.2. We are having problems getting SSL 
to work. We can reach the default tomcat page when we use 8070 but not 
when we use the SSL port 8443.

We have the following connector's setup in our server.xml

<Connector port="8070"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" redirectPort="8443" acceptCount="100"
               debug="0" connectionTimeout="20000"
               algorithm="IbmX509"
               disableUploadTimeout="true" />


<Connector className="org.apache.coyote.tomcat5.CoyoteConnector"
               port="8443"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" disableUploadTimeout="true"
               acceptCount="100" debug="0" scheme="https" secure="true"
               keystorePass="changeit" keystoretype="JKS" >
    <Factory
      className="org.apache.coyote.tomcat5.CoyoteServerSocketFactory"
      clientAuth="false" protocol="SSL" algorithm="IbmX509" />
    </Connector>

<Connector port="8071"
               enableLookups="false" redirectPort="8443" debug="0"
               protocol="AJP/1.3" />

We are also getting the following error in the catalina.out when we 
startup Tomcat. The server starts up though so we are unsure if this is 
related to our problem or not.

INFO: Installing web application at context path /balancer from URL 
file:/br1/ho
me/weblsnr/tomcat-5.0.25/webapps/balancer
Jul 9, 2004 9:30:21 AM org.apache.catalina.core.StandardContext start
SEVERE: Error filterStart
Jul 9, 2004 9:30:21 AM org.apache.catalina.core.StandardContext start
SEVERE: Context startup failed due to previous errors

We are totally new to Tomcat so any help would be greatly appreciated.

Reply via email to