Answers for "how to close a project that running on port windows"

7

close ports in windows

netstat -ano | findstr :8080

          // listening value
taskkill /pid 11740 /f
Posted by: Guest on October-07-2021
0

how to close a port

lsof -n -i4TCP:8080  <-- get process id of what you want to close
sudo kill -9 processID  <-- close desired process
Posted by: Guest on April-21-2022

Code answers related to "how to close a project that running on port windows"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language