【Ad】adb.exe, start-server 'failed', adbserverfailed
[Switch] how to deal with the problem that the Android adb.exe program cannot be started
Solution:
Baidu and google all say that the task manager kill adb or restart adb server, but my task manager does not have adb. I guess a program occupies the adb port. So we can find it by following this idea.
5037 for the default adb port to view the port as follows:
Netstat-aon | findstr" 5037"
TCP 127.0.0.1: 5037 0.0.0.0: 0 LISTENING 6540
Port 6540 occupies port 5037. Check the task 6540. wandoujia is found as follows:
Tasklist | findstr" 6540"
Wandoujia_daemon.exe 6540 Console 1 4,276 K
The problem is easily solved. In the Task Manager killdrop wandoujia_daemon.exe, run the android program, OK.
1. Disable the pods Process
2. adb kill-server
3. adb start-server
4. Restart Eclipse
OK
How to operate adb kill-server and adb start-server
Cmd window
1. Open the window and enter the directory of the folder where adb.exe is located. (adb is a useful tool in android to view and perform operations on the content of the android Virtual Machine ), because my android-sdk-windows is on drive D, you must first enter drive D and directly enter drive D:
Then you can directly access the drive D, and then enter cd android-sdk-windows \ platform-tools to access the directory where adb.exe is located.