解决“Can't bind to local 8630 for debugger”错误--查杀多余进程
Posted AYE89
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决“Can't bind to local 8630 for debugger”错误--查杀多余进程相关的知识,希望对你有一定的参考价值。
Can‘t bind to local 8630 for debugger
表明本地8630端口被占用
1、Windows平台
在windows命令行窗口下执行:
1.查看所有的端口占用情况
C:\>netstat -ano
协议 本地地址 外部地址 状态 PID
TCP 127.0.0.1:8700 0.0.0.0:0 LISTENING 3236
2.查看指定端口的占用情况
C:\>netstat -aon|findstr "8630"
协议 本地地址 外部地址 状态 PID
TCP 127.0.0.1:8700 0.0.0.0:0 LISTENING 2014
3.查看PID对应的进程
C:\>tasklist|findstr "2014"
映像名称 PID 会话名 会话# 内存使用
========================= ======== ================
tadb.exe 2014 Console 0 16,064 K
4.结束该进程
C:\>taskkill /f /t /im tadb.exe
以上是关于解决“Can't bind to local 8630 for debugger”错误--查杀多余进程的主要内容,如果未能解决你的问题,请参考以下文章