windows 使用gatewayWorker,并关掉对应进程
使用
windows 环境开启gateway
windows 关闭本地占用端口
// 找到占用2367端口对应程序的PID号, 假设找到6604
netstat -aon|findstr "2367"
// 根据PID找到程序名, 假设找到xx.exe
tasklist|findstr "6604"
// 结束进程
taskkill /f /t /im xx.exe
// 或者
taskkill /pid 6604 /F
...
原创
2022-01-14 18:33:10 ·
576 阅读 ·
0 评论