idea出现Error running 'tomcat8': Address localhost:8082 is already in use
解决方法:
idea启动tomcat服务,出现以下错误,然后去任务管理器把所有java.exe进程结束掉,但还是报错。
Error running 'tomcat8': Address localhost:8082 is already in use
Error running 'tomcat8': Unable to open debugger port (127.0.0.1:50157): java.net.SocketException "socket closed"
最后在命令行窗口执行:netstat -aon | findstr 8082
结果:TCP 127.0.0.1:8082 0.0.0.0:0 LISTENING 8024
其中8082是我的tomcat端口,改成你的即可,找出PID,我这里8024就是PID,然后执行以下命令结束进程:
taskkill -f -pid 8024
完美解决!!!