debug启动项目弹出提示 Error running omp: Unable to open debugger port (127.0.0.1:50812): java.net.SocketException "socket closed" 错误.导致tomcat服务器无法启动.

  IntelliJ IDEA  启动tomcat  报错:    idea Unable to open debugger port (127.0.0.1:58233): java.net.SocketException "socket closed"

1、根据端口号“80”查找进程号
netstat -ano|findstr "80"
TCP    0.0.0.0:80             0.0.0.0:0              LISTENING       7796


2、根据进程号“7796”查找进程名
tasklist|findstr 7796
java.exe                      7796 Console                    1     57,368 K

3、根据进程名杀死进程
taskkill -pid 7796 -f

IntelliJ IDEA  启动tomcat  报错:    idea Unable to open debugger port (127.0.0.1:58233): java.net.SocketException "socket closed"

或者是用下面的方法

IntelliJ IDEA  启动tomcat  报错:    idea Unable to open debugger port (127.0.0.1:58233): java.net.SocketException "socket closed"

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-18
  • 2021-09-16
猜你喜欢
  • 2021-12-13
  • 2021-05-25
  • 2021-06-25
  • 2021-10-17
  • 2021-04-23
  • 2021-05-31
相关资源
相似解决方案