kill port 8080 windows code example

Example 1: windows kill port

netstat -ano | findstr :3001
taskkill /PID <yourid> /F

Example 2: windows stop process running on port 8080

netstat  -ano  |  findstr  <Port Number>
taskkill  /F  /PID  <Process Id>

Example 3: kill process on port windows

netstat -ano | findstr "PORT_NUMBER"

taskkill /PID PORT_NUMBER /f

Example 4: kill port

kill -9 $(lsof -t -i:8080)

Example 5: how to listen to the process running in port 8080 and kill it

Steps to kill process running on port 8080 in Windows cmd/terminal,

#1 netstat -ano | findstr < Port Number >
#2 taskkill /F /PID < Process Id >

Example 6: 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

Tags:

Misc Example