Answers for "close port firewall-cmd"

7

close ports in windows

netstat -ano | findstr :8080

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

close port

sudo kill $(sudo lsof -t -i:3000)
Posted by: Guest on April-05-2022
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 "TypeScript"

Browse Popular Code Answers by Language