linux:
netstat -anp | grep 9000 查找进程
windows:
netstat -ano | findstr “9099”
tasklist | findstr 9099 查找使用端口的服务过滤
taskkill -f- t /im 9099 杀掉进程
linux:
netstat -anp | grep 9000 查找进程
windows:
netstat -ano | findstr “9099”
tasklist | findstr 9099 查找使用端口的服务过滤
taskkill -f- t /im 9099 杀掉进程