Idea解决Web server failed to start. Port 8080 was already in use.端口被占用(亲测)
报错信息如下:Description:Web server failed to start. Port 8080 was already in use.Action:Identify and stop the process that's listening on port 8080 or configure this applicationto listen on another port.12
报错信息如下:
Description:
Web server failed to start. Port 8080 was already in use.
Action:
Identify and stop the process that's listening on port 8080 or configure this application
to listen on another port.
1
2
3
4
5
报错原因:
是因为Tomcat的端口被占用了,你需要修改一下端口号,或者把正在运行的端口号进程杀死.
解决方案1:
在yml文件中修改端口号为8081
server:
port: 8081
1
2
解决方案2:
win+R —> 输入cmd —> 回车
输入命令 —> netstat -ano | findstr "8080"
找到被占用的进程号14916,输入命令 —> taskkill -pid 进程号 -f
或者使用任务管理器关闭服务 Ctrl+Alt+Del —> 打开任务管理器
————————————————
版权声明:本文为CSDN博主「掉发的小王」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_52423918/article/details/119893263
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)