Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine nodejs website error 503

We are deploying a nodejs application in gcloud using

$ gcloud preview app deploy app.yaml

but every time it is deployed and the link is followed the following error is displayed:

Error: Server Error
The service you requested is not available yet.

Please try again in 30 seconds

However, in 30 seconds, or days later, the error is still there. All the vm's are healthy according to app engine console. and no obvious errors are appearing in the logs.

Can someone please help as to where we can start looking for the problem?

like image 657
cfl Avatar asked Jan 19 '26 18:01

cfl


1 Answers

You are probably deploying a Node.js Managed VM. I would start by deploying with the parameter --verbosity debug to see if there is interesting information that points you to why it is failing. If that doesn't work, you can access the Managed VM to see what happens by changing it to user managed1 and ssh-ing into it.

like image 80
dyeray Avatar answered Jan 21 '26 06:01

dyeray