Answers for "stop all processes running on port 80"

4

windows stop process running on port 8080

netstat  -ano  |  findstr  <Port Number>
taskkill  /F  /PID  <Process Id>
Posted by: Guest on August-21-2020
1

kill all process at port

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

kill process running on port 80

# shows information on Processes running on port 80 with PIDs
$: sudo lsof -i tcp:80

$: sudo lsof -t -i tcp:80 | sudo xargs kill
Posted by: Guest on January-15-2021

Code answers related to "stop all processes running on port 80"

Browse Popular Code Answers by Language