打开命令窗口(以管理员身份运行)
netstat -ano
netstat -aon|findstr "8081"
tasklist|findstr "9088"
强制(/F参数)杀死 pid 为 9088 的所有进程包括子进程(/T参数):
taskkill /T /F /PID 9088