Answers for "macos port 80 in use"

0

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
1

mac release port 8080

lsof -n -i4TCP:8080 | awk '{print$2}' | tail -1 | xargs kill -9
Posted by: Guest on December-01-2021

Browse Popular Code Answers by Language