how to quit all ports code example
Example 1: kill service by port number on windows
taskkill /F /PID PORT_NUMBER
Example 2: kill a port
kill $(lsof -t -i:8080)
//kill port 8080
Example 3: 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