How can I shut down the local firebase emulators?
according to this: https://github.com/firebase/firebase-tools/issues/1367 Ctrl+C
kills the emulators
- Check which process is occupying the port
sudo lsof -i tcp:<port>
- Kill the process
kill -9 <process id>