how to list and kill running port in ubuntu code example
Example 1: ubuntu stop process on port
sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`
Example 2: find process id of port ubuntu
$ sudo netstat -ltnp | grep -w ':80'
sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`
$ sudo netstat -ltnp | grep -w ':80'