Last active
June 6, 2017 04:35
-
-
Save xhlwill/48edcaf83c9bbe74b198aa101e5d04bb to your computer and use it in GitHub Desktop.
find processes that uses my tcp 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
# You can try netstat | |
netstat -vanp tcp | grep 3000 | |
# For OSX El Capitan and newer (or if your netstat doesn't support -p), use lsof | |
lsof -i tcp:3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment