This article brings you an introduction to the solution to the port occupation error in Tomcat. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Several ports (8005, 8080, 8009) required by Tomcat v8.5 Server at localhost are already in use.
The server may already be running in another process, or a system process may be using the port.
To start this server you will need to stop the other process or change the port number(s).
Recently adjusted the project, publishing to Tomcat shows an error,
This error shows that ports 8005, 8080, and 8009 are occupied. There are two solutions:
1. Open the project manager, find javaw.exe, and click End the process and restart and it will be OK.
2. Find the server.xml configuration file under
apache-tomcat-8.5.37\conf in the installation directory where Tomcat is installed, and modify the following port number :
is changed to 8015
## to 8088 Changed to 8019The above is the detailed content of Introduction to solutions to port occupation errors in Tomcat. For more information, please follow other related articles on the PHP Chinese website!