Windows kill port process Get link Facebook X Pinterest Email Other Apps January 25, 2024 netstat -ano | findstr :8080 (the port number) This should give you the process to kill. You can then run: taskkill /F /PID 12017(or whatever the process ID is) Read more
metro bundler can't listen on port 8081 Get link Facebook X Pinterest Email Other Apps March 29, 2018 Metro Bundler can't listen on port 8081 sudo lsof -i :8081 kill -9 [process number] Read more