how tofind out wut is running on port 80 code example
Example 1: how to stop running port in ubuntu
sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`
Example 2: how to stop port 8080
netstat -ano | findstr <Port Number>
sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`
netstat -ano | findstr <Port Number>