how to kill port 443 in linux code example
Example 1: how to stop running port in ubuntu
sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`
Example 2: kill port 3000 ubuntu
fuser -n tcp -k 9001
sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`
fuser -n tcp -k 9001