kill process running on port 8080 ubuntu code example

Example 1: stop port ubintu

sudo kill -9 `sudo lsof -t -i:9001`

Example 2: kill port ubuntu

sudo kill -9 `sudo lsof -t -i:3002`

Example 3: ubuntu stop process on port

sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`

Example 4: how to stop port 8080

netstat  -ano  |  findstr  <Port Number>

Example 5: kill the process running on 8080

C:\Users\RevisitClass>netstat -ano | findstr 8080
  TCP    0.0.0.0:18080          0.0.0.0:0              LISTENING       19788
  TCP    [::]:18080             [::]:0                 LISTENING       19788

Example 6: kill the process running on 8080

taskkill  /F  /PID  <Process Id>

Tags:

Misc Example