System Configuration
Modifying Application Ports
Changing the default port
- Shut down Cascade CMS.
- Edit the /tomcat/conf/server.xml
file.
- Locate the
HTTP/1.1
Connector:
<Connector port="8080" maxHttpHeaderSize="8192" ../>
- Change the port attribute (the default is
8080
) and save the file. - Restart Cascade CMS.
- Repeat the same steps for any other Connector used within the configuration (e.g. SSL and.or AJP).
Multiple instances of Cascade CMS
While running multiple instances on one machine is discouraged, it is possible to do so if the HTTP and shutdown ports are modified to prevent the instances from interfering with one another.
Warning: Running multiple environments on a production machine is not supported.
In addition to modifying the HTTP port (as mentioned above), administrators must also modify the shutdown port:
- Edit the
/tomcat/conf/server.xml file.
- Change the port attribute (the default is
8005
):<Server port="8005" shutdown="SHUTDOWN">
- Save the file.
- Restart Cascade CMS.