启动tomcat出现 Unable to open debugger port (127.0.0.1:53104): java.net.SocketException "....."

今天运行tomcat的时候突然提示:Unable to open debugger port (127.0.0.1:53104): java.net.SocketException "Interrruted function call:accept failed",一般来说这个是指端口被占用了。

不要急,打开idea的Event Log查看其被占用的端口号,我这里是1009

启动tomcat出现 Unable to open debugger port (127.0.0.1:53104): java.net.SocketException

Ok,打开cmd,运行 :netstat -ano|findstr 端口号  得到被占用的进程端口号,我这里是22388

再运行: taskkill -f -pid 进程端口号杀进程,如下图:

启动tomcat出现 Unable to open debugger port (127.0.0.1:53104): java.net.SocketException

Ok,重启tomcat,错误解决。

 

你可能感兴趣的:(#,后端,Java,tomcat)