IDEA Error running 'Tomcat 9.0.40': Unable to open debugger port (127.0.0.1:44766): java.net.SocketException "Interrupted function call: accept failed" 解决方案
1.在 Event log 查看哪个端口被占用
2.运行cmd 输入命令 netstat -ano | findstr "1099" 查询这个端口的进程id是多少
3.查询这个进程id 是哪个进程 tasklist | findstr "20284"
4.确认进程,没问题时杀死进程 taskkill /pid 20284 -f