Search code examples
firebasegoogle-cloud-firestorefirebase-tools

How can I shut down the local firebase emulators?


Currently I initialise the firebase emulators with:

$ firebase emulators:start

After some time working on it I want to stop it. How can I then stop the emulators?


Solution

    1. Check which process is occupying the port sudo lsof -i tcp:<port>
    2. Kill the process kill -9 <process id>