We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如图
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
端口1080被占用了,在CMD里查询是哪个进程占用的,把它结束掉可以了。
步骤:
使用NETSTAT程序查询占用端口的进程的ID:
NETSTAT
> NETSTAT -ano | FINDSTR 1080
输出结果类似于以下这种:
TCP 127.0.0.1:1080 0.0.0.0:0 LISTENING 5636 TCP 127.0.0.1:56449 127.0.0.1:1080 ESTABLISHED 21700
其中,LISTENING状态后面的5636即是占用该端口的进程的ID。
LISTENING
5636
使用TASKKILL程序结束掉占用端口的进程即可:
TASKKILL
> TASKKILL /PID 5636
如果以上命令无法结束进程,可以加入/F参数强制该进程结束:
/F
> TASKKILL /F /PID 5636
No branches or pull requests
如图
The text was updated successfully, but these errors were encountered: