netstat -ano | findstr 8889首先找到8889端口号所对应的进程号pid 假设为1234;关闭该进程taskkill /F /PID 1234这样,后台使用8889端口号就不冲突了;