how to kill port 8080 code example
Example 1: kill port
kill -9 $(sudo lsof -t -i:8080)
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 service by port number on windows
taskkill /F /PID PORT_NUMBER
Example 5: kill port
kill -9 $(lsof -t -i:8080)
Example 6: 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)"