Hi Markus,
I have made the changes to the server.xml.(secure="true" and
scheme="https") but still
the default web page is not displayed. When i use the same server.xml
config under windows tomcat installation i am able to access the deployed
application and tomcat on port 8443 and 8070.please see below the modified
server.xml.
<!--
<Connector port="8080"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8070" acceptCount="100"
debug="0" connectionTimeout="20000"
disableUploadTimeout="true" /> -->
<!-- Note : To disable connection timeouts, set connectionTimeout value
to 0 -->
<!-- Note : To use gzip compression you could set the following
properti
es :
compression="on"
compressionMinSize="2048"
noCompressionUserAgents="gozilla, traviata"
compressableMimeType="text/html,text/xml"
-->
<Connector port="8070"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
debug="0" connectionTimeout="20000" algorithm="ibmX509"
disableUploadTimeout="tr
ue" secure="true" scheme="https"/>
<!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
<Connector port="8443"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" debug="0" scheme="https" secure="true"
keystoreType="JKS"
keystoreFile="/export/home/elsadmin/ELS_HOME/co
nf/certs/KeyStore" keystorePass="changeit" clientAuth="false"
sslProtocol="TLS"
protocol="SSL" algorithm="ibmX509" />
Do i need to add any other attributes
Thanks
Anil
From: Markus Schönhaber <[EMAIL PROTECTED]>
Reply-To: tomcat-user@jakarta.apache.org
To: "Tomcat Users List" <users@tomcat.apache.org>
Subject: Re: Unable to Configure SSL on Tomcat on AIX
Date: Tue, 21 Mar 2006 10:18:20 +0100
anil abraham wrote:
> I have been trying to configure SSL on Tomcat 5.0.28 on IBM AIX5.2 OS
on
> port
> 8070 .(I also tried with port 8443 but i dont get the tomcat default web
> page even though
> catalina.out shows Tomcat and my deployed application as started.).
> After making changes to configure SSL on AIX my server.xml of tomcat
file
> is as shown
[...]
> <Connector port="8070"
> maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
> enableLookups="false" redirectPort="8443" acceptCount="100"
> debug="0" connectionTimeout="20000" algorithm="ibmX509"
> disableUploadTimeout="tr
> ue"/>
>
>
> I am not able to acesss my deployed
> application(htpps://172.25.7.50:8070/els)
You might want to review these documents:
http://tomcat.apache.org/tomcat-5.0-doc/config/http.html
and
http://tomcat.apache.org/tomcat-5.0-doc/ssl-howto.html
At a first glance, it seems to me that secure="true" and scheme="https" are
missing in the <Connector>'s configuration.
Regards
mks
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]