Answers for "how to close application running in port"

7

how to stop an application on a port

npx kill-port 8080
Posted by: Guest on September-19-2020
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 application running in port"

Browse Popular Code Answers by Language