kill port cmd code example
Example 1: kill process on port
lsof -i:8080
kill $(lsof -t -i:8080)
kill -9 $(lsof -t -i:8080)
Example 2: windows kill port
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 3: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 4: kill service by port number on windows
taskkill /F /PID PORT_NUMBER
Example 5: kill port
kill -9 $(sudo lsof -t -i:'portName')
//Ex. if portname is 3000
//then we will execute "kill -9 $(sudo lsof -t -i:3000)"