1.查看哪个个端口被占用 我的是1099端口被占用

IDEA Unable to open debugger port (127.0.0.1:xxxx): java.net.SocketException "socket closed" 解决方案

2.运行cmd 输入命令 netstat -ano | findstr "1099" 查询这个端口的进程id是多少

IDEA Unable to open debugger port (127.0.0.1:xxxx): java.net.SocketException "socket closed" 解决方案

3.查询这个进程id 是哪个进程 tasklist | findstr "11684"

IDEA Unable to open debugger port (127.0.0.1:xxxx): java.net.SocketException "socket closed" 解决方案

如果确定这个程序没有问题 就可以干掉他了

4.杀死进程 taskkill /pid 11684 -f

IDEA Unable to open debugger port (127.0.0.1:xxxx): java.net.SocketException "socket closed" 解决方案

相关文章:

  • 2021-05-25
  • 2021-06-25
  • 2021-10-17
  • 2022-12-23
  • 2022-12-23
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-13
  • 2021-12-12
  • 2021-08-02
  • 2021-07-30
  • 2021-06-19
  • 2022-12-23
相关资源
相似解决方案