How to find a process by port used
Posted on February 5, 2022
Here the magic:
lsof -i:3132
It will print the PID
, then you can kill it with:
kill `PID`
Posted on February 5, 2022
Here the magic:
lsof -i:3132
It will print the PID
, then you can kill it with:
kill `PID`