目录
linux
windows
Linux:
Windows:
1、window下查看端口占用:
//查询占用8088端口的进程的pid netstat -ano|findstr "8088" -->pid=6580//根据pid查询到进程对应的应用 tasklist|findstr "6580" -->xxx.exe//杀死应用,关闭进程 taskkill /f /t /im xxx.exe
原文地址:https://www.cnblogs.com/half-two-feet/p/8301570.html
时间: 2024-10-13 22:16:02