You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by sunmeet <sg...@usc.edu> on 2002/06/13 01:01:53 UTC

please help me

hi,
i am tryingto configure Tomcat as a secure web server using SSL on windows
2000
i have installed the tomcat 4.0
and j2sdk1.4.0
my tomact is working alright that is the unsecure tomcat
so far to make secure web server i have done this

1. i have created the certificate by
%JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA

2. I have made changes in the server.xml

<!-- 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="8443"
               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 8443 -->

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


3. now when i do https://localhost:8443/
it gives me oage not found but
http://localhost works

can give me some what should i do



----- Original Message -----
From: "Sven Woltmann" <wo...@wr-gmbh.de>
To: "'Tomcat Users List'" <to...@jakarta.apache.org>
Sent: Tuesday, June 11, 2002 6:47 AM
Subject: AW: SSL Certificates from a CA...


> If you use Apache's SSL functionality, you don't need Tomcat's, since
Apache
> does all the SSL encrypting/decrypting for you.
>
> If you use Tomcat standalone, you can use JDK's "keytool" to generate an
SSL
> certificate request with the "-certreq" option.
>
> Sven
>
>
> > -----Ursprüngliche Nachricht-----
> > Von: Sean M Alderman [mailto:sean.m.alderman@grc.nasa.gov]
> > Gesendet: Dienstag, 11. Juni 2002 15:43
> > An: Tomcat Users List
> > Betreff: SSL Certificates from a CA...
> >
> >
> > Greetings,
> >   I just read through the SSL-HowTo for Tomcat and followed it to get
> > things going with a test certificate.  Is there any
> > documentation on how
> > to generate a server certificate request for a CA?  I've done
> > this with
> > apache and mod_ssl using openSSL with out issue.  Are the
> > openSSL tools
> > interoperable with Tomcat?
> >
> > Thanks.
> > --
> > Sean M. Alderman
> > ITRACK Systems Analyst
> > PACE/NCI - NASA Glenn Research Center
> > (216) 433-2795
> >
> > Calling a windowed operating system "Windows" is like naming an
> > automobile "Wheels."
> >
> > --
> > To unsubscribe, e-mail:
> > <ma...@jakarta.apache.org>
> > For additional commands, e-mail:
> > <ma...@jakarta.apache.org>
> >
>
> --
> To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
> For additional commands, e-mail:
<ma...@jakarta.apache.org>
>


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>