Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save maxcnunes/8460750 to your computer and use it in GitHub Desktop.
Save maxcnunes/8460750 to your computer and use it in GitHub Desktop.
Unix - Find what process is using a specif port
# with netstat
netstat -nlp | grep :80
# or with lsof
lsof -i :80 | grep LISTEN
# http://www.cyberciti.biz/faq/find-linux-what-running-on-port-80-command/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment