Symptoms:
In the Catalina.out log, we see following error:
org.apache.catalina.core.StandardServer.await Failed to create server shutdown socket on address [localhost] and port [8005] (base port [8005] and offset [0])
java.net.BindException: Address already in use: NET_Bind
Cause:
This is caused by a port conflict - another process is using port 8005.
Action:There are two ways to approach this issue. Either the other process or Tomcat needs to be configured to use a different port to resolve the conflict.
- Stop tomcat server, modify the shutdown port in server.xml (apache-tomcat\conf) file to a different one (e.g. 8006) and start the tomcat server.