Hello

I am configuring SSL with tomcat 5.0.28 .I ahve followed the following two
steps only 

1.    Generating the keystore by following command 
  keytool -genkey -alias tomcat -keyalg RSA  -keystore /path/to/my/keystore

2. specifying the following in the server.xml

 <-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
<Connector 
           port="8443" minProcessors="5" maxProcessors="75"
           enableLookups="true" disableUploadTimeout="true"
           acceptCount="100" debug="0" scheme="https" secure="true";
           clientAuth="false" sslProtocol="TLS"
           keystoreFile="/path/to/my/keystore"
           keystoreType="JKS"
           keystorePass="password" />


Now my problem is i am able to configure it in windows 2000 operating system
and am able to connect to the url  https://localhost:8443/ .  But when i did
the sam configuration in the linux OS and tomcat started successfully , i
could not connect to the    https://localhost:8443/  URL . It is showing
"page cannot be displyed" though i am able to connect to
http://localhost:8080/ URL .

Can any one help me out ...
Thanks in advance ...

with regards 
mridu

-- 
View this message in context: 
http://www.nabble.com/problem-in-configuration-of-Tomcat5.0.28-and-SSL-in-Linux-tf3814430.html#a10797664
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to