报错:Verify the connector‘s configuration, identify and stop any process that‘s listening on port XXXX
启动spring项目是控制台报错,详细信息如下:
Verify the connector's configuration, identify and stop any process that's listening on port 8080, or configure this application to listen on another port.
翻译:
端口占用了。。。
原因:
之前程序的错误关闭导致端口未释放
解决:
一、重启大法
二、手动关闭
1.进入cmd命令行,输入netstat -ano,找到本地地址中冲突的端口,记住PID。
2.打开任务管理器,选择详细信息,找到对应的PID,右键关闭即可。
最后,重启项目,正常运行!(1)
👍