kill the process running on port 8080 linux code example
Example 1: kill port
netstat -aon | findstr 8080
taskkill /f /pid 77777
Example 2: kill a process at a port
fuser -k 8080/tcp
netstat -aon | findstr 8080
taskkill /f /pid 77777
fuser -k 8080/tcp