Find Apps using specific Port in network netstat -ano | findstr :8080 // listening value taskkill /pid 11740 /f
lsof -n -i4TCP:8080 <-- get process id of what you want to close sudo kill -9 processID <-- close desired process