How to kill a process listening on a port in linux
Sometimes a program or an application stops responding or you are working on a terminal and want to stop a process. In such cases you need to terminate or kill that process. Linux provides a kill command that takes the PID or Process Id of the process and terminates it. In most cases, the only way to identify the process to be stopped or getting its PID is by using the specific port on which it is running or listening. Thus, first you must be able to find the process listening on a specific port and then kill it. This post will outline different commandsRead More →