Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.91 KB | None | 0 0
  1. platform-tools $pwd
  2. /Users/USER_NAME/Library/Android/sdk/platform-tools
  3. platform-tools $./adb kill-server
  4. * server not running *
  5. platform-tools $./adb start-server
  6. * daemon not running. starting it now at tcp:5037 *
  7. * daemon started successfully *
  8. platform-tools $./adb kill-server
  9. * server not running *
  10. platform-tools $netstat -vanp tcp | grep 5037
  11. tcp4       0      0  127.0.0.1.5037         *.*                    LISTEN      131072 131072   7845      0
  12. platform-tools $lsof -i tcp:5037
  13. COMMAND  PID   USER   FD   TYPE             DEVICE SIZE/OFF NODE NAME
  14. adb     7845 USER_NAME    8u  IPv4 0x20da842c55736aab      0t0  TCP localhost:5037 (LISTEN)
  15. platform-tools $./adb start-server
  16. * daemon not running. starting it now at tcp:5037 *
  17. error: could not install *smartsocket* listener: Address already in use
  18. ADB server didn't ACK
  19. * failed to start daemon *
  20. error: cannot connect to daemon
  21. platform-tools $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement