how to kill processes at a port code example
Example 1: kill a port
kill $(lsof -t -i:8080)
//kill port 8080
Example 2: kill a process at a port
fuser -k 8080/tcp
kill $(lsof -t -i:8080)
//kill port 8080
fuser -k 8080/tcp