Created
April 6, 2018 16:24
-
-
Save diegorribeiro/5a7002073d38d73bd5eef82df26d80e0 to your computer and use it in GitHub Desktop.
React-native npm start not working ? kill process in port 8081
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Terminating a process on port 8081 | |
#Run the following command on a Mac to find the id for the process that is listening on port 8081: | |
$ sudo lsof -i :8081 | |
#Then run the following to terminate the process: | |
$ kill -9 <PID> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment