|
|
|
Error: "Connection refused" when connecting with Netscape/Firefox browser
In some instances Internet Explorer (5.01+) will connect to your SSL secured website fine, however Netscape/Firefox will not. This is because the incorrect keystore password is being referenced by the "KeystorePass" directive in the server.xml config file.
Please open the config file, and insure the "KeystorePass" directive is referncing the correct keystore password.
<!-- 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"
acceptCount="10" debug="0" scheme="https" secure="true">
<Factory
className="org.apache.catalina.net.SSLServerSocketFactory"
clientAuth="false"
keystoreFile="ssl/.keystore"
keystorePass="password"
protocol="TLS"/>
</Connector>
|
Provide Feedback  |
|