kill process on a specific port linux code example
Example 1: stop a process running on a port
# Print PID of process bound on that port.
fuser 8080/tcp
# Kill that process
fuser -k 8080/tcp
Example 2: kill a process at a port
fuser -k 8080/tcp