idea报8080端口被占用解决
Windows 解决8080端口被占用Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
·
1错误提示
Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port.
2原因
这是因为我们某个程序占用了8080端口,有可能是我们以前某个项目没有正确暂停导致。
3解决
1:打开cmd窗口 输入:
netstat -ano | findstr "8080"
找到占用这个端口的程序IP,我这里是5216
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 5216
2:打开任务管理器,选择详细信息
找到对应的IP的程序
右键选择结束任务
3:重新运行我们想要运行的程序就可以了
其他方法
在YML配置文件中将我们想要运行的程序8080端口改成其他的,比如8090。
更多推荐
已为社区贡献1条内容
所有评论(0)