6

I'm running

firebase emulators:start

and getting

firestore emulator has exited upon receiving signal: SIGINT

enter image description here

enter image description here

edited

enter image description here


As Clarity suggested in the comments section

enter image description here

firestore-debug.log

enter image description here

AskYous
  • 4,332
  • 9
  • 46
  • 82
Adriel Werlich
  • 1,982
  • 5
  • 15
  • 30
  • If you find a reproducible problem with the Firebas CLI, please post an issue on GitHub. https://github.com/firebase/firebase-tools – Doug Stevenson Aug 08 '19 at 16:25
  • @DougStevenson... the problem I was trying to solve with the firebase function I was able to solve with client side code ... so I didn´t continued to test the issue... for the moment... :thumbsup – Adriel Werlich Aug 08 '19 at 19:44

4 Answers4

4

i had this issue and i just fixed it, install firebase tools like so:

npm install -g firebase-tools

and then log into the firebase project like this:

firebase login -p <PROJECT_NAME>

and it would work

Curtis Crentsil
  • 459
  • 6
  • 20
0

As it says in the error message, you need to setup your emulator first:

firebase setup:emulators:firestore

More info: https://firebase.google.com/docs/rules/emulator-setup

Clarity
  • 10,730
  • 2
  • 25
  • 35
0

Well the only solution, I've discovered to this is to run that same command firebase emulators:start again and again and again. Until it works. Works for me every time. Hilariously!!! yes.

I don't know what really happens under the hood but, That's just a hacky way to do it.

Vixson
  • 589
  • 7
  • 8
0

I got the same issue. Finally it worked through making this request before starting the emulators again :

npm install -g firebase-tools