Answers for "kill server command"

20

windows kill port

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

how to kill server

sudo lsof -iTCP:8080 -sTCP:LISTEN
Posted by: Guest on May-15-2021
2

close all localhost connections

netstat -ano | findstr :yourPortNumber

taskkill /PID typeyourPIDhere /F
Posted by: Guest on April-16-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language