adb shell 杀进程以及端口占用,adbserver服务重启失败
linux:
adb shell ps |grep netease
杀进程:
adb shell kill [PID] //杀死进程
C:\Users\chenquan>adb shell ps
USER PID PPID VSIZE RSS WCHAN PC NAME
root 1 0 428 240 c01c0a90 08054ac6 S /init
root 2 0 0 0 c013a8a6 00000000 S kthreadd
root 3 2 0 0 c0128d84 00000000 S ksoftirqd/0
root 5 2 0 0 c0136fc0 00000000 S kworker/u:0
adb server重启失败解决:
adb kill-server //停止adb服务
netstat -ano | findstr "5037" // 查找占用端口号5037的连接
杀掉所有占用 5307port 的19608进程:
taskkill /F /PID 19608
再重启adb server
adb start-server //开启adb服务
相关推荐
huha 2020-10-16
tianhuak 2020-11-24
lianshaohua 2020-09-23
laisean 2020-11-11
zhangjie 2020-11-11
大牛牛 2020-10-30
firefaith 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 2020-10-20
以梦为马不负韶华 2020-10-20
CARBON 2020-10-20
彼岸随笔 2020-10-20
lianshaohua 2020-10-20
yutou0 2020-10-17
JohnYork 2020-10-16
xiaonamylove 2020-10-16
Julyth 2020-10-16
applecarelte 2020-10-16
ourtimes 2020-10-16