windows本地启动tomcat端口占用
报错信息:
The Tomcat connector configured to listen on port 8080 failed to start.
The port may already be in use or the connector may be misconfigured
解决办法:
- 搜索 命令提示符(cmd), 然后以管理员权限运行, 防止有的进程无权限杀死
- 执行以下命令
netstat -aon|findstr 8080
- 停止正在使用的端口,执行以下命令
taskkill /f /t /im 8316
taskkill /f /t /im 12264