24

This morning I tried to deploy my react project to firebase hosting but I received this error:

Error: Server Error. certificate has expired

Then I tried to execute firebase list command to see the list of my projects but again I received the same error! I tried it on other projects with the same result. So I believe this error is not related to a specific project and it has something to do with firebase-tools. Here is the error log:

[debug] 
[debug] [2020-01-07T03:37:57.789Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
[debug] [2020-01-07T03:37:57.789Z] > authorizing via signed-in user
[debug] [2020-01-07T03:37:57.792Z] >>> HTTP REQUEST GET https://admin.firebase.com/v1/projects  

[debug] [2020-01-07T03:37:58.566Z] Error: certificate has expired
    at TLSSocket.<anonymous> (_tls_wrap.js:1116:38)
    at emitNone (events.js:106:13)
    at TLSSocket.emit (events.js:208:7)
    at TLSSocket._finishInit (_tls_wrap.js:643:8)
    at TLSWrap.ssl.onhandshakedone (_tls_wrap.js:473:38)
[error] 
[error] Error: Server Error. certificate has expired
Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
Hossein Rashno
  • 3,073
  • 1
  • 25
  • 49
  • 1
    If you have a problem running the Firebase CLI to interact with your projects, please contact Firebase support directly. https://support.google.com/firebase/contact/support – Doug Stevenson Jan 07 '20 at 03:55

7 Answers7

28

I found the solution. First, do this:

npm i -g firebase-tools@latest

It looks like I'm using an outdated version of Firebase CLI. This error happened because the older versions of CLI are linked to legacy Firebase services that are no longer operational. Upgrading to the latest CLI version is the only solution.

Then you need to use new commands instead of deprecated ones. For example:

firebase projects:list  //instead of firebase list
Hossein Rashno
  • 3,073
  • 1
  • 25
  • 49
4

Probably you will need:

sudo npm i -g firebase-tools@latest --force
Pol Fernández
  • 1,198
  • 9
  • 14
3

I updated to latest and did logout+login. Only started working after closing the terminal and opening a new one

Alex Pavtoulov
  • 830
  • 1
  • 6
  • 9
1

Had the same problem. Change your local clock to before 4th of January 2020

1

I had an old version of firebase installed that was not allowing the new CLI to run correctly. I had to manually delete the old version, reinstall the new version, and then everything worked fine. Here's how I did it:

  1. Run which firebase in your terminal to see where your firebase npm package is saved.
  2. Delete that folder.
  3. Run npm i -g firebase-tools@latest
  4. Run firebase init and you should be up and running again without any errors.
0

run npm install --save firebase-functions@latest and make sure to add

"engines": {
  "node": "8" 
}

in your package.json

Adedayo
  • 73
  • 8
0

If issue still exist after updating the CLI then try to logout from firebase and re-login

firebase logout
firebase login
ThusharaJ
  • 409
  • 4
  • 7