stop a process running on a port

Shell
# Print PID of process bound on that port.
fuser 8080/tcp

# Kill that process
fuser -k 8080/tcp
Source

Also in Shell: