Skip to content

Instantly share code, notes, and snippets.

@lorenadl
Last active July 13, 2018 15:54
Show Gist options
  • Save lorenadl/bdd8766efa837797d1338d2b0c101314 to your computer and use it in GitHub Desktop.
Save lorenadl/bdd8766efa837797d1338d2b0c101314 to your computer and use it in GitHub Desktop.
Rails server errors

puma error "...in `initialize': Address already in use - bind(2) for "0.0.0.0" port 3100 (Errno::EADDRINUSE)..."

You must terminate the process that's using the port.

Find PID:

$ lsof -wni tcp:3100

Kill the process:

$ kill -9 PID

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment