报错信息
***************************
APPLICATION FAILED TO START
***************************
Description:
The Tomcat connector configured to listen on port 8100 failed to start. The port may already be in use or the connector may be misconfigured.
Action:
Verify the connector's configuration, identify and stop any process that's listening on port 8100, or configure this application to listen on another port.
错误原因是端口号被java.exe程序占用,接触占用即可
错误解决
1. 打开cmd命令窗口 输入如下指令查看所有端口和PID
netstat -ano
2. 找到对应的端口对应的PID 输入指令找到对应的进程
tasklist | findstr 7676
3. 杀掉该进程 再次启动就OK
taskkill /f /t /im java.exe