CMS+(TM) FAQ

 Search:
Report Problem
Q:
Client shows "Data transfer interrupted" while connecting to CMS 3.0 Server
A:

Your pc is running a program which is using the same port as CMS 3.0. To solve, you can edit {CMS 3.0 Installation Path}/tomcat/conf/server.xml. Search for the following text
 

<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
           enableLoopups="false" disableUploadTimeout="true"
           maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
           debug="0" scheme="https" secure="true"
           clientAuth="false" sslProtocol="TLS"
           keystoreFile="conf/cms3.bin" keystorePass="yourkeypassword" URIEncoding="UTF-8"/>

Change the port number from 443 to other number. E.g.

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"

Restart the CMS 3.0 server after saved the file

Last Updated: 26/06/2009 19:02