0
点赞
收藏
分享

微信扫一扫

tomcat 启动报端口被占用(windows)

朱悟能_9ad4 2022-03-17 阅读 131
tomcat

错误说明:端口8005被占用

解决方法:

1.使用 netstat -aon|findstr "8005" 查看端口被占用情况。

2.根据第一步所查询出的进程ID,使用 tasklist|findstr "5680" 命令查询是什么进程占用此端口。

3.使用 taskkill /T /F /PID 5680 结束进程。

 4. 重新启动tomcat即可。

举报

相关推荐

0 条评论