Installing Corticon Web Console on Tomcat 9
- Last Updated: November 12, 2025
- 1 minute read
- Corticon
- Version 7.1
- Documentation
Folder Setup
The steps below assume the following file system folder setup:
C:\Java_17: Java 17 installation-
C:\Tomcat_9: Apache Tomcat 9 installation -
C:\Progress\Corticon 7.1: Default Corticon 7.1 installation
Change the folder locations as needed in each step to match your configuration.
Install Tomcat
-
Download the binary distribution of Apache Tomcat for your platform from: https://tomcat.apache.org/download-90.cgi For Windows, download "64-bit Windows zip".
- Create a work folder:
mkdir C:\Corticon_Work_7.1 - Extract the downloaded files to:
C:\Tomcat_9 -
Deploy Corticon Web Console to Tomcat Edit the file:
C:\Tomcat_10\bin\startup.bat, and then add the lines:set JAVA_HOME="C:\Java_17" set CATALINA_OPTS=-DCORTICON_HOME="%CATALINA_HOME%" -DCORTICON_WORK_DIR="C:\Corticon_Work_7.1" set JAVA_OPTS=%JAVA_OPTS% -Dfile.encoding=UTF-8 - Copy WAR file to Tomcat Copy the file:
to:C:\Progress\Corticon 7.1\WebConsole\Deploy\Tomcat\9\corticon.warC:\Tomcat_9\webapps\corticon.war - Copy the
etcfolder (which contains the fileslogback.xmlandCorticonServerConsoleConfig.groovy):
to:C:\Progress\Corticon 7.1\WebConsole\etcC:\Corticon_Work_7.1\etc - Edit the file:
and then setC:\Corticon_Work_7.1\etc\logback.xmlWORK_DIR_LOGSto the folder to write log files:<property name="WORK_DIR_LOGS" value="C:\Corticon_Work_7.1\logs"/> - Configure Tomcat Ports (Optional) Edit the file:
and then set the preferred ports (the port settings here reflect those previously used by Corticon):C:\Tomcat_9\conf\server.xml<Connector port="8850" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8851" maxParameterCount="1000"/> <Server port="8852" shutdown="SHUTDOWN"> - Restart Tomcat. If Tomcat is running, stop it.
- Start Tomcat by running:
C:\Tomcat_9\bin\startup.bat.