idea端口占用

当我们运行idea,明明没有启动项目,却报出像端口已被占用,如下图所示

springboot启动报错记录:Identify and stop the process that s listening on port 9999 or configure this application to listen on another port.

解决方案:
首先打开cmd ---->最好是用管理员模式
输入命令,查找使用9090的进程号:
netstat -ano | findstr 9999
使该进程终止:
taskkill /F /PID 进程号
重新启动springboot,可以正常启动了

posted on 2023-05-07 13:33  鹏星  阅读(310)  评论(0编辑  收藏  举报

导航