java项目启动报错端口占用问题
在我们开发调试过程中,偶尔会遇到项目启动报错
***************************
APPLICATION FAILED TO START
***************************
Description:
Web server failed to start. Port 8089 was already in use.
Action:
Identify and stop the process that's listening on port 8089 or configure this application to listen on another port.
这就说明端口被占用了,那么我们怎么处理呢?
1.windows处理方法
win+r 输入cmd
在控制台输入 netstat -aon|findstr “8089”
这时候你大概会看到pid,再次输入
taskkill /pid 6344 /f 就可以了
2.mac处理方法
打开终端,输入 lsof -i:8089,然后直接 kill pid就好了
最后,如果聪明可爱的你发现了本次分享的问题,不要懒惰哈,动动你的小手,评论区让我也学习一下哦
本次分享就这些,拜了个拜