본문 바로가기

Linux

Finding a process that is using specific network port

If you want to find a process that is using specific network port - for example, udp 123 -, 

you can use 'fuser' command as following:


# fuser -n udp 123


end.