Windows apps
resmon.exe
Display applications that binds a port
Windows
netstat -a -b -n -o | findstr 5005
Linux
….List applications
Windows
tasklist
Linux
ps -aux
Kill an application
Windows
Taskkill /PID 9424 /F
Linux
kill ...