win7启动tomcat失败处理-LMLPHP

使用如下命令杀死占用8080的进程

netstat -ano | findstr 8080 # 查看8080端口状态
taskkill /pid 6148 /f # 杀掉占用8080端口的6148(不是固定的,每个电脑的都不一样)

win7启动tomcat失败处理-LMLPHP

发现杀完后 ,又会有新的进程占用8080端口

于是 看下是什么程序占用

win7启动tomcat失败处理-LMLPHP

手动停止服务

再次查询8080端口占用已经没有了

win7启动tomcat失败处理-LMLPHP

这是启动tomcat 成功

win7启动tomcat失败处理-LMLPHP

05-11 16:09