Last active
December 13, 2017 19:08
-
-
Save kknd22/729c522735b1d44d4fe7e663ffa8ee08 to your computer and use it in GitHub Desktop.
Linux: Find Out Which Process Is Listening Upon a Port
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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