Skip to content

Instantly share code, notes, and snippets.

@kknd22
Last active December 13, 2017 19:08
Show Gist options
  • Save kknd22/729c522735b1d44d4fe7e663ffa8ee08 to your computer and use it in GitHub Desktop.
Save kknd22/729c522735b1d44d4fe7e663ffa8ee08 to your computer and use it in GitHub Desktop.
Linux: Find Out Which Process Is Listening Upon a Port
sudo netstat -tulpn | grep 9092
tcp 0 0 0.0.0.0:9092 0.0.0.0:* LISTEN 4484/java
sudo cat /proc/4484/cmdline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment