See Process On Port

[Solved] See Process On Port | Erlang - Code Explorer | yomemimo.com
Question : list process using port

Answered by : augusto-vicente

sudo lsof -n -i :80 | grep LISTEN

Source : https://unix.stackexchange.com/questions/106561/finding-the-pid-of-the-process-using-a-specific-port | Last Update : Thu, 22 Apr 21

Question : get process running on port

Answered by : elated-emu-g4vrn32fxn6s

# ss -tanp | grep 6379
LISTEN 0 128 127.0.0.1:6379 *:* users:(("redis-server",pid=2531,fd=4))

Source : https://unix.stackexchange.com/questions/106561/finding-the-pid-of-the-process-using-a-specific-port | Last Update : Fri, 13 Aug 21

Answers related to see process on port

Code Explorer Popular Question For Erlang