Docker Error bind: address already in use

后端 未结 20 1409
情深已故
情深已故 2020-11-28 03:28

When I run docker-compose up in my Docker project it failes with the following message:

Error starting userland proxy: listen tcp 0.0.0.0:3000:          


        
相关标签:
20条回答
  • 2020-11-28 03:41
    docker-compose down --rmi all 
    

    and then restart your computer

    0 讨论(0)
  • 2020-11-28 03:42

    I upgraded my docker this afternoon and ran into the same problem. I tried restarting docker but no luck.

    Finally, I had to restart my computer and it worked. Definitely a bug.

    0 讨论(0)
  • 2020-11-28 03:48

    For Linux/Unix:

    Simple search for linux utility using following command

    netstat -nlp | grep 8888
    

    It'll show processing running at this port, then kill that process using PID (look for a PID in row) of that process.

    kill PID
    
    0 讨论(0)
  • 2020-11-28 03:49

    I ran into the same issue several times. Restarting docker seems to do the trick

    0 讨论(0)
  • 2020-11-28 03:50

    In my case it was

    Error starting userland proxy: listen tcp 0.0.0.0:9000: bind: address already in use

    And all that I need is turn off debug listening in php storm icon

    0 讨论(0)
  • 2020-11-28 03:51

    I resolve the issue by restarting Docker.

    0 讨论(0)
提交回复
热议问题