进程查找及 kill
找到占用8088端口的PID
netstat -ano|findstr 8088
强制杀死PID
taskkill /pid 2472 -t -f
lsof -i:8008
ps -ef|grep uwsgi ubuntu 10295 10279 0 21:09 pts/1 00:00:00 grep --color=auto python3 kill -9 10295
找到占用8088端口的PID
netstat -ano|findstr 8088
强制杀死PID
taskkill /pid 2472 -t -f
lsof -i:8008
ps -ef|grep uwsgi ubuntu 10295 10279 0 21:09 pts/1 00:00:00 grep --color=auto python3 kill -9 10295