Answers for "powershell kill port 80"

0

kill processes on port 80

sudo lsof -t -i tcp:80 -s tcp:listen | sudo xargs kill
Posted by: Guest on April-06-2022
2

kill port windows

netstat -ano | findstr :<PORT>

(Replace <PORT> with the port number you want, but keep the colon)

Step 2:

Next, run the following command:

taskkill /PID <PID> /F
Posted by: Guest on September-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language