解决:Verify the connector‘s configuration, identify and stop any process that‘s listening on port xxxx

IDEA本地项目启动不起来,查看日志有如下内容:

Verify the connector's configuration, identify and stop any process that's listening on port 18088, or configure this application to listen on another port.

原因:端口占用问题。

解决: 

1.win+R键,输入cmd,查看18088端口被哪个进程占用。

netstat -ano|findstr 18088


  2.查看进程是哪个应用

tasklist|findstr xxxx


  3.根据进程号,停止进程 

taskkill /f /t /pid xxxx

比如: 

解决:Verify the connector‘s configuration, identify and stop any process that‘s listening on port xxxx_第1张图片

你可能感兴趣的:(intellij-idea,数据库,java)