Kill a process on a port [Linux]
how one can kill a process on a port on ubuntu
How to kill a process on a port on ubuntu
You want to use backtick, not regular tick:
If that doesnβt work, you could also use $()
for command interpolation:
FOR UBUNTU
1- Find what application/process is using the pro, type:
and press Enter.
You will get an output similar to this one
I have got the process Id, which is 6782, now this is the process that is using port 8080
.
Kill the process, type: kill -p 6782
Last updated