From: http://blog.csdn.net/id19870510/article/details/8489486
1: A strange problem found during android debugging today
[Html]View plaincopy
- C: \ Users \ xxxx> adb start-server
- Adb server is out of date. killing...
- ADB server didn't ACK
- * Failed to start daemon *
Adb reports an error no matter whether shell devices or logcat is executed.
[Html]View plaincopy
- Adb server is out of date. killing...
The source is that the adb server is not started.
Go to stackoverflow and check the analysis as follows:
[Html]View plaincopy
- C: \ Users \ xxxx> adb nodaemon server
- Cannot bind 'tcp: 8080'
Failed to bind the adb server port
Continue to check which port is occupied
[Html]View plaincopy
- C: \ Users \ xxxxxx> netstat-ano | findstr" 5037"
- TCP 127.0.0.1: 5037 0.0.0.0: 0 LISTENING 4236
- TCP 127.0.0.1: 5037 127.0.0.1: 49422 ESTABLISHED 4236
- TCP 127.0.0.1: 49422 127.0.0.1: 5037 ESTABLISHED 3840
Open the task manager and kill the 4236 process. OK
Now the problem has been solved.