kill server on a port 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 port
kill -9 $(lsof -t -i:8080)
# Print PID of process bound on that port.
fuser 8080/tcp
# Kill that process
fuser -k 8080/tcp
kill -9 $(lsof -t -i:8080)