You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Violeta Georgieva <vg...@nexcom.bg> on 2002/02/21 11:48:40 UTC

SSL problems with Jakarta tomcat 4.0.1

Hi,

Windows NT
jdk1.3.1_01
tomcat 4.0.1

    <!-- Define a non-SSL HTTP/1.1 Connector on port 80 -->
    <Connector className="org.apache.catalina.connector.http.HttpConnector"
               port="80" minProcessors="5" maxProcessors="75"
               enableLookups="true" redirectPort="443"
               acceptCount="10" debug="0" connectionTimeout="60000"/>
    <!-- Note : To disable connection timeouts, set connectionTimeout value
     to -1 -->

    <!-- Define an SSL HTTP/1.1 Connector on port 443 -->

    <Connector className="org.apache.catalina.connector.http.HttpConnector"
               port="443" minProcessors="5" maxProcessors="75"
               enableLookups="true"
        acceptCount="10" debug="0" scheme="https" secure="true">
      <Factory className="org.apache.catalina.net.SSLServerSocketFactory"
               clientAuth="false" protocol="TLS" keystorePass="invoice"/>
    </Connector>

After startup.bat, I look at https://localhost and it works,
but  when I start tomcat like a service there is message:

"Could not start the Apache Tomcat service on \\NewTech140
  Error 2140: An internal Windows NT error occurred"

Any Idea?


Violeta Georgieva