Find out that an application is listen on a given port

1 min read

Choose one of those:

sudo lsof -i :3030
lsof -i | grep LISTEN | grep 3030
netstat -ltnp | grep -w ':3030'
fuser 3030