Answers for "kill process running on port 8080 linux"

34

kill port

sudo kill -9 `sudo lsof -t -i:9001`
Posted by: Guest on May-03-2020
2

kill a port

kill $(lsof -ti:3000)
Posted by: Guest on January-16-2020
1

kill port

netstat -aon | findstr 8080
taskkill /f /pid 77777
Posted by: Guest on January-27-2020
-1

kill process on port

#list process running on specified port (here 80, change to your port)
sudo lsof -i:80

#kill process on specified port (here 80, change to your port)
sudo kill $(sudo lsof -t -i:80)
Posted by: Guest on December-28-2020
1

kill port

:8080.
C:\Users\psmith>netstat -ano|findstr "PID :8080"
Proto Local Address Foreign Address State PID
TCP 0.0.0.0:8081 0.0.0.0:0 LISTENING 18264

taskkill /pid 18264 /f
Posted by: Guest on May-27-2020

Code answers related to "kill process running on port 8080 linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language