Created
July 9, 2019 18:55
-
-
Save parvez/ef0749629d1151ab6fd689f8af86af33 to your computer and use it in GitHub Desktop.
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
You can try netstat | |
netstat -vanp tcp | grep 3000 | |
For macOS El Capitan and newer (or if your netstat doesn't support -p), use lsof | |
sudo lsof -i tcp:3000 | |
For Centos 7 use | |
netstat -vanp --tcp | grep 3000 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment