Posts

Showing posts with the label kill

Windows kill port process

  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)

metro bundler can't listen on port 8081

Metro Bundler can't listen on port 8081 sudo lsof -i :8081 kill -9 [process number]