command to stop port 8080 in terminal code example
Example 1: how to stop port 8080
netstat -ano | findstr <Port Number>
Example 2: kill the process running on 8080
taskkill /F /PID <Process Id>
netstat -ano | findstr <Port Number>
taskkill /F /PID <Process Id>