码上敲享录 > IntelliJ IDEA常见问题分享 > 关闭tomcat但浏览器访问一直报unkown the request

关闭tomcat但浏览器访问一直报unkown the request

上一章章节目录下一章 2020-09-30已有1226人阅读 评论(0)

关闭tomcat但浏览器访问一直报unkown the request



解决方法:

1..先执行netstat -aon|findstr 8082找出tomcat的PID

2.再执行taskkill -f -pid  21672结束进程


例如:

C:\Users\sun>netstat -aon|findstr 8082

 TCP    0.0.0.0:8082           0.0.0.0:0              LISTENING       21672

 TCP    127.0.0.1:62764        127.0.0.1:8082         TIME_WAIT       0

 TCP    127.0.0.1:62770        127.0.0.1:8082         TIME_WAIT       0

 TCP    127.0.0.1:62771        127.0.0.1:8082         TIME_WAIT       0

 TCP    127.0.0.1:62788        127.0.0.1:8082         TIME_WAIT       0

 TCP    127.0.0.1:62799        127.0.0.1:8082         TIME_WAIT       0


C:\Users\sun>taskkill -f -pid  21672

成功: 已终止 PID 为 21672 的进程。


0

有建议,请留言!

  • *您的姓名:

  • *所在城市:

  • *您的联系电话:

    *您的QQ:

  • 咨询问题:

  • 提 交