1.找到进程id:netstat -ano |findstr "8081"
2.找到进程名称:tasklist |findstr ""(进程id号,这步可以忽略)
3.杀掉进程:taskkill /f /t /im "进程id或者进程名称"