cmd to stop service at port 80 code example
Example 1: ubuntu stop process on port
sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`
Example 2: kill the process running on 8080
C:\Users\RevisitClass>taskkill /F /PID 19788
SUCCESS: The process with PID 19788 has been terminated.