kill process running on port 8080 linux code example
Example 1: kill a port
kill $(lsof -ti:3000)
Example 2: kill port
netstat -aon | findstr 8080
taskkill /f /pid 77777
Example 3: 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