IDEA运行 tomcat时出现 Address localhost:8080 is already
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA运行 tomcat时出现 Address localhost:8080 is already相关的知识,希望对你有一定的参考价值。
使用IDEA运行 tomcat时出现 Address localhost:8080 is already in use,就很奇怪,我明明只有这一个程序呀,怎么还会被占用。后来想想可能就是被其他进程占用了吧,怎么处理呢
1.查看所有的机器端口的pid
netstat -ano
2.找到正在使用8080的程序端口是8952
3.查找所有的程序的端口,但这样会有很多,不方便人肉眼查找
tasklist
4.使用管道|过滤
tasklist |findstr "8952"
5.原来是java.exe这个程序,关掉就好了
6.打开任务管理器,找到该程序,右键点击结束任务
7.重新运行tomcat就可以了
以上是关于IDEA运行 tomcat时出现 Address localhost:8080 is already的主要内容,如果未能解决你的问题,请参考以下文章
001 IDEA配置tomcat时出现Application server libraries not found
Tomcat部署servlet实现类时出现java.lang.ClassCastException类型转换异常
IDEA 运行项目出现 java.net.BindException: Address already in use: JVM_Bind <null>:8080