Hello Jurriaan,
The "Address already in use: JVM_Bind" error signifies that, ColdFusion’s internal port are being used by some other process.
Can you check the Server shutdown port in server.xml. <Server port="XXXX" shutdown="SHUTDOWN">, where XXXX is the port number . If that port is already in use by the other instance, please replace XXXX by any other port no it use.
You also need to check the port numbers for <Connector port="XXXX" protocol="AJP/1.3" redirectPort="XXXX" tomcatAuthentication="false" />
Please take a backup of your existing server.xml(s) before making the changes.
After that, try to restart the server and check if you are still facing the issue.
Note:- To check the list of ports in use, please Launch Command prompt as Administrator and type the command netstat –ano.
Regards,
Anit Kumar