Carl wrote:
Fresh Tomact 6.0.20 install on a new Slackware (version 13 - 64bit) linux box.
Access to 8080 works fine but neither 8443 nor 443 work.
Can you define "does not work" ?
What error are you seeing ?
- is it a failure to even connect to that port on the server ?
- or do you get a Tomcat error page as a response ?
I believe 443 and 8443 are up because a nmap gives:
Discovered open port 443/tcp on 127.0.0.1
Discovered open port 8080/tcp on 127.0.0.1
Discovered open port 8443/tcp on 127.0.0.1
Try on the server : netstat -pan
and verify that the process associated with each of the ports is really
Tomcat, or something else.
The relevant portions of server.xml are:
<snip>
<Connector port="8443" maxHttpHeaderSize="8192"
maxThreads="600" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="/usr/local/certs/tomcat_keystore.ks"
keystorePass="jellybean"/>
<Connector port="443" maxHttpHeaderSize="8192"
maxThreads="600" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="/usr/local/certs/tomcat_keystore.ks"
keystorePass="jellybean"/>
</snip>
These look OK (to me), provided that they do not have <!-- ... --> tags
around them. (Neither really your <snip>..</snip> tags above).
Come on, do check. It is a frequent enough error.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org