ANDROID

ADB server error

룸훼훼 2011. 2. 17. 14:11
반응형
안드로이드] adb 장치 인식안될때


▶ 내용 : 
- 윈도우 OS 계열에서 adb 장치 연결이 안될때
- 인식이 잘되다가 갑자기 안될때


▶ 해결방법 :
1-1) 이클립스 종료 (adb daemon 종료)

1-2) 작업관리자 → 프로세스 → adb.exe 라는 이름의 프로세스 모두 종료
→ 프로세스가 2개 이상 띄워져 있을 수 있음 (주의)
→ taskkill /IM adb.exe /F

2) android sdk 폴더로 이동
   예) cd /d C:\Dev\Android\android-sdk-windows\tools

3) adb start-server

혹은 adb kill-server 후
adb start-server

4) 단말 리부팅

참조
http://www.androidpub.com/68191

==================
C:\Documents and Settings\Master>cd /d C:\Dev\Android\android-sdk-windows\tools

C:\Dev\Android\android-sdk-windows\tools>adb start-server
adb server is out of date.  killing...
* daemon started successfully *

C:\Dev\Android\android-sdk-windows\tools>adb start-server

C:\Dev\Android\android-sdk-windows\tools>adb start-server
* daemon not running. starting it now *
* daemon started successfully *

================================
C:\Documents and Settings\Master>taskkill /IM adb.exe /F
성공: 프로세스 "adb.exe"(PID 4072)이(가) 종료되었습니다.


C:\Documents and Settings\Master>taskkill /IM adb.exe /F
오류: 프로세스 "adb.exe"을(를) 찾을 수 없습니다.


C:\Documents and Settings\Master>taskkill /IM adb.exe /F
성공: 프로세스 "adb.exe"(PID 5188)이(가) 종료되었습니다.
성공: 프로세스 "adb.exe"(PID 2600)이(가) 종료되었습니다.


[2010-08-23 01:37:36 - DeviceMonitor]Adb connection Error:현재 연결은 원격 호스트에 의해 강제로 끊겼습니다
[2010-08-23 01:37:43 - DeviceMonitor]Connection attempts: 1
[2010-08-23 01:37:45 - DeviceMonitor]Connection attempts: 2
[2010-08-23 01:37:46 - DeviceMonitor]Connection attempts: 3
[2010-08-23 01:39:18 - DeviceMonitor]Failed to read the adb response!
[2010-08-23 01:39:18 - DeviceMonitor]Adb connection Error:Failed to read the adb response!


C:\Dev\Android\android-sdk-windows\tools>adb start-server
adb server is out of date.  killing...
ADB server didn't ACK
* failed to start daemon *
반응형