port kill code example
Example 1: kill port ubuntu
sudo kill -9 `sudo lsof -t -i:9001`
Example 2: kill app at port
lsof -i:8080
kill $(lsof -t -i:8080)
kill -9 $(lsof -t -i:8080)
Example 3: kill port
lsof -i:8080
Example 4: kill all process at port
lsof -ti tcp:2525 | xargs kill
Example 5: kill process on port
lsof -i:8080
kill $(lsof -t -i:8080)
kill -9 $(lsof -t -i:8080)
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