Intranet Connections requires the installation of Railo/Lucee. This is installed using the default ports. If installed on an existing Tomcat/Apache server, those ports are already in use and Railo/Lucee will not start and you will not be able to view the intranet. You may see something like this:
You can see which ports are in use by opening a command prompt and typing ‘netstat -aon | more’
The ports to look for are 8005, 8009, 8888, and 8443. If these are in use, you'll see the PID using these in the netstat output. Windows Task Manager will tell you what process has that PID.
If you find Tomcat is using those ports, you can do the following to resolve the conflict:
- Stop Railo Server or Lucee service
- Update Railo/Lucee ports
- Copy C:\railo\tomcat\conf\server.xml (C:\lucee\tomcat\conf\server.xml) to another location as a backup
- Open the file in Notepad or Notepad++
- Change ‘port’ and ‘redirectPort’ in the file to a port that is not currently in use
<Server port="8005" shutdown="SHUTDOWN">
<Listener className="org.apache.catalina.startup.VersionLoggerListener" />
<Connector port="8888" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
- Update Boncode AJP port
- Copy C:\Windows\BonCodeAJP13.settings to another location as a backup
- Open the file in Notepad or Notepad++
- Update
<Port>8009</Port>
to the port AJP/1.3 was changed to in the server.xml file
- Start Railo Server or Lucee service