端口占用解决(先查pid,根据pid停止进程)
查询端口所在的进程id(pid)
netstat -ano | findstr (端口号)
根据pid停止进程
taskkill /f /pid (pid号)
netstat -ano | findstr 8088
taskkill /f /pid 123456
端口占用解决(先查pid,根据pid停止进程)
查询端口所在的进程id(pid)
netstat -ano | findstr (端口号)
根据pid停止进程
taskkill /f /pid (pid号)
netstat -ano | findstr 8088
taskkill /f /pid 123456