Created
August 1, 2019 06:53
-
-
Save RamazanBIYIK/7849ec738c1ad28e7d259df0515b1fed to your computer and use it in GitHub Desktop.
Linux- To find process that using specific port
This file contains hidden or 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 lsof -i -P -n | grep LISTEN //To find listening ports | |
sudo lsof -i -P -n | grep LISTEN | grep 3389 // With a specific port |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment