Answers for "linux kill process running on port"

7

kill process running on port in windows

netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Posted by: Guest on June-12-2020
1

kill all process at port

lsof -ti tcp:2525 | xargs kill
Posted by: Guest on November-06-2020
0

kill process linux using port

sudo kill -9 $(sudo lsof -t -i:8000)
Posted by: Guest on April-02-2021

Code answers related to "linux kill process running on port"

Browse Popular Code Answers by Language