1.问题
Unable to open debugger port (127.0.0.1:28676): java.net.SocketException “socketException”
2.解决方案
(1).idea中,tomcat 确认jmx端口 1099
(2).根据jmx port 查找进程
netstat -ano | findstr “1099”
(3).根据进程号“22216”确认进程名
tasklist | findstr “22216”
(4).干掉进程
taskkill -pid 22216 -f
原文链接:Idea Unable to open debugger port,转载请注明来源!