How to find a process by port used
•
1 min read
Here the magic:
lsof -i:3132
It will print the PID, then you can kill it with:
kill `PID`
Here the magic:
lsof -i:3132
It will print the PID, then you can kill it with:
kill `PID`