Skip to content

Instantly share code, notes, and snippets.

@jcopps
Created June 6, 2020 04:01
Show Gist options
  • Save jcopps/e90d759a78a21d5e2e72d16aa370ba2f to your computer and use it in GitHub Desktop.
Save jcopps/e90d759a78a21d5e2e72d16aa370ba2f to your computer and use it in GitHub Desktop.
Docker - Possible workaround for address already in use
docker stop $(docker ps -a -q)
docker ps # again to make sure containers is off
sudo lsof -i tcp:2049 # now you get and list of process running and using 2049 port find and copy PID
sudo kill -9 yout_PID
https://stackoverflow.com/questions/55535967/error-starting-userland-proxy-listen-tcp-0-0-0-02049-bind-address-already-in
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment