mac/winows上查杀进程
Mac
1 查询端口的进程号:lsof -i:8815
2 杀进程:kill 8589
Windows
1 根据端口查询进程 netstat -ano |findstr "端口号"
2 杀掉进程 taskkill /f /t /pid "进程PID" 或者 taskkill /F /PID 16828
注意:/f /t /pid 之间需要有空格
本文来自博客园,作者:zhangpba,转载请注明原文链接:https://www.cnblogs.com/zhangpb/p/16003184.html