“netstat -lpn | grep 8080
That’s a bit cleaner than sudo lsof -i :8080. It always amazes me tho, how many different commands/ways there are in Linux to get to the same spot.
Comment on [deleted]
solrize@lemmy.ml 2 days ago
generally, use “netstat -lpn | grep 8080” (or whatever port number) to find out what process is already listening on that port. This kind of thing happens all the time.
“netstat -lpn | grep 8080
That’s a bit cleaner than sudo lsof -i :8080. It always amazes me tho, how many different commands/ways there are in Linux to get to the same spot.
lol indeed
kumi@feddit.online 2 days ago
FWIW, netstat is considered legacy and deprecated. The in-vogue way to do the same thing is
ss -lpn | grep 8080.netstat like ifconfig still works and is shipped in the
net-toolspackage if you like it but if you’re learning it’s better to build a habit withssandipright away.https://arturogl.com/2023/10/18/linux-new-tools-replacing-netstat/