Skip to main content
Skip table of contents

How do I change the port of the Tomcat server/service API?

If you want to adjust the port of the Tomcat server used in i-effect, e.g. because another program uses this port, you must follow two steps.

Adjust the port of the Tomcat in the installation directory (depending on the version, the program directory “IEFFECT310” is different):

  1. CODE
    # \IEFFECT310\base\tomcat\conf\server.xml
    
    <Connector port="8080" protocol="HTTP/1.1"
                   connectionTimeout="20000"
                   redirectPort="22080" />
    	
    <Connector port="22080" protocol="HTTP/1.1"
                   connectionTimeout="20000"
                   redirectPort="8443"
    			   SSLEnabled="true"
    			   sslProtocol="TLS"
    			   scheme="https"
    			   secure="true"
    			   SSLCertificateFile="/home/ieffect/webctrl/_.menten.com.crt"
    			   SSLCertificateKeyFile="/home/ieffect/webctrl/_.menten.com.key" />
  2. Also adjust the port in the WebControl configuration file:

    CODE
    # \IEFFECT310\webctrl\htdocs\module\Application\config\site.config
    
    "port_tomcat" => ":22080" // Portnummer Tomcat: immer mit Doppelpunkt angeben !

Then restart the *SERVICE subsystem.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.