Android Studio Can't bind to local 8602 for debugger

21,713

Solution 1

Also check you hosts file.

host

127.0.0.1       localhost.localdomain   localhost
::1             localhost.localdomain   localhost

These lines should not be cumented. hint

Solution 2

Had a similar problem. My issue was that my hosts file (/etc/hosts on macOS) had the following extra localhost entry:

10.0.1.12    localhost

After deleting that entry, debugger started working!

Share:
21,713
Prakash Samy
Author by

Prakash Samy

Updated on July 19, 2022

Comments

  • Prakash Samy
    Prakash Samy almost 2 years
    8:41:01 AM Can't bind to local 8600 for debugger
    8:41:23 AM Can't bind to local 8601 for debugger
    8:41:24 AM Can't bind to local 8602 for debugger
    8:41:26 AM Can't bind to local 8603 for debugger
    8:41:30 AM Can't bind to local 8604 for debugger
    8:41:36 AM Can't bind to local 8605 for debugger
    8:41:42 AM Can't bind to local 8606 for debugger
    8:41:46 AM Can't bind to local 8608 for debugger
    8:41:48 AM Can't bind to local 8610 for debugger
    8:41:50 AM Can't bind to local 8613 for debugger
    8:41:57 AM Can't bind to local 8622 for debugger
    8:42:41 AM Can't bind to local 8628 for debugger
    8:41:01 AM Can't bind to local 8600 for debugger
    8:41:23 AM Can't bind to local 8601 for debugger
    8:41:24 AM Can't bind to local 8602 for debugger
    8:41:26 AM Can't bind to local 8603 for debugger
    8:41:30 AM Can't bind to local 8604 for debugger
    8:41:36 AM Can't bind to local 8605 for debugger
    8:41:42 AM Can't bind to loc
    
  • zhi.yang
    zhi.yang about 7 years
    just delete other useless host record, android studio 2.3 work fine.
  • TWiStErRob
    TWiStErRob about 4 years
    So should these lines be there or not? It's commented by default.