错误:Identify and stop the process that's listening on port 10000 or configure this application to listen on another port.
解决方法:
1、window+R打开doc窗口
2、输入命令netstat -aon|findstr "被占用的端口号"
netstat -aon|findstr "10000"
3、输入命令taskkill /pid 上一条命令请求到的代号 /f
taskkill /pid 14568 /f

版权声明:本文为weixin_43493397原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。