Process Listening on a Particular Port in Linux
These commands might not workable in some Unix like systems.
Using netstat
netstat -ltnp
netstat -peanut
lsof
lsof -i :80
fuser
fuser 80/tcp
ss
ss -nlp
``
## References
[3 Ways to Find Out Which Process Listening on a Particular Port](https://www.tecmint.com/find-out-which-process-listening-on-a-particular-port/)