Answers for "how to find what's running on port 8080 mac"

15

mac terminal find process by port

sudo lsof -i tcp:3000
Posted by: Guest on April-08-2020
1

how to port number of 8080 in macos

$ lsof -i :8080 | grep LISTEN

java    42975 mkyong   57u  IPv6 0xf10ca37d995a077f      0t0  TCP *:http-alt (LISTEN)
Posted by: Guest on June-19-2020

Code answers related to "how to find what's running on port 8080 mac"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language