win系统:
查找端口
netstat -ano | findstr 10000(端口)
TCP 127.0.0.1:10000 0.0.0.0:0 LISTENING 12456
杀死进程
taskkill -pid 12456(进程号) -f
win系统:
查找端口
netstat -ano | findstr 10000(端口)
TCP 127.0.0.1:10000 0.0.0.0:0 LISTENING 12456
杀死进程
taskkill -pid 12456(进程号) -f