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