I am trying to kill a process in the command line for a specific port in ubuntu.
If I run this command I get the port:
sudo lsof -t -i:9001 >
sudo lsof -t -i:9001
Kill PORT:
sudo is important to show process id.
sudo
$ sudo netstat -antlp | grep 45136 tcp 0 0 0.0.0.0:45136 0.0.0.0:* LISTEN **-** $ kill -9 45136