Windows 关闭8080端口(8080端口被占用)

项目场景:

windows下mitmproxy的mitmdump -w test.txt无法正常监测端口


问题描述

错误提示:[Errno 10048] error while attempting to bind on address ('0.0.0.0', 8080): 通常每个套接字地址(协议/网络地址/端口)只允许 使用一次。


原因分析:

端口已经被占用


解决方案:

提示:杀死端口当前进程

首先以管理员身份打开命令提示符cmd

 C:\WINDOWS\system32> netstat -o -n -a | findstr :8080
 
 C:\Windows\system32>taskkill /F /PID 15216

Windows 关闭8080端口(8080端口被占用)_第1张图片

你可能感兴趣的:(windows,网络,服务器)