Win下端口占用问题:OSError: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试

常见问题:https://www.cnblogs.com/dotnetcrazy/p/9192089.html

netstat -ano|findstr 8080

如果不计较端口,换个即可

也可以查找一下是哪个进程,然后结束进程:

netstat |findstr 8080

taskkill /pid 8080

原文地址:https://www.cnblogs.com/dotnetcrazy/p/10093178.html