Skip to content

Instantly share code, notes, and snippets.

@jnakatsui
Created June 8, 2014 21:07
Show Gist options
  • Save jnakatsui/35621815f5544b8b82b3 to your computer and use it in GitHub Desktop.
Save jnakatsui/35621815f5544b8b82b3 to your computer and use it in GitHub Desktop.
Fix for address already using port 80 Nginx error
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
Then it means nginx or some other process is already using port 80.
You can kill it using:
sudo fuser -k 80/tcp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment