Error running Tomcat8: Address localhost:1099 is already in use错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Error running Tomcat8: Address localhost:1099 is already in use错误相关的知识,希望对你有一定的参考价值。
以下内容参考至:https://my.oschina.net/u/1157906/blog/205907
今天使用IntelliJ IDEA 运行web项目的时候,遇到了 Error running Tomcat8: Address localhost:1099 is already in use 的错误,导致web项目无法运行。提示1099端口已经被占用,在网上查到的解决办法如下,在此做一个记录:
第一步,运行->cmd,执行命令:netstat –ano
可见,占用1099端口的进程的PID是6072。
第二步,执行命令:tasklist
可见,占用1099端口的进程是java.exe
第三步,通过任务管理器,终止进程java.exe
我们会看到开启了2个java.exe,全部结束掉
第四步,重新启动tomcat,即可正常启动
以上是关于Error running Tomcat8: Address localhost:1099 is already in use错误的主要内容,如果未能解决你的问题,请参考以下文章
Error running Tomcat8: Address localhost:1099 is already in use 的错误
Error running Tomcat8: Address localhost:8080 is already in use 的错误
关于Linux中如何使用 systemd-run创建临时Cgroup来限制ad-hoc的资源消耗
当我运行“npx react-native run-ad”时,新鲜的 React Native App 不会安装在模拟器上