Answers for "stop port in use"

20

windows kill port

netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Posted by: Guest on October-06-2020
7

kill process running on port in windows

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

how to stop port 8080

netstat  -ano  |  findstr  <Port Number>
Posted by: Guest on February-27-2020
1

stop port

kill -9 $(sudo lsof -t -i:'portName')
//Ex. if portname is 3000
//then we will execute "kill -9 $(sudo lsof -t -i:3000)"
Posted by: Guest on January-21-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language