簡體   English   中英

在Google App Engine上部署Angular-Fullstack(MEAN)

[英]Deploying Angular-Fullstack (MEAN) on Google App Engine

我已經使用Yeoman Angular-Fullstack生成器( https://github.com/angular-fullstack/generator-angular-fullstack )生成了一個項目。

我創建了一個app.yaml,並嘗試使用以下命令在GAE上部署該項目:

gcloud app deploy

但是我遇到一個錯誤:

ERROR: (gcloud.app.deploy) Error Response: [13] Timed out when starting VMs.  It's possible that the application code is unhealthy.  (0/2 ready, 2 still deploying).

有關如何調試gcloud部署的任何提示? 我正在運行最新的gcloud SDK。

-

這是更長的調試跟蹤:

Updating service [default]...-DEBUG: Operation [apps/<MY-PROJECT>/operations/63e50c89-da5f-4697-aeea-447865a82cc4] not complete. Waiting 5s.
Updating service [default]...|DEBUG: Operation [apps/<MY-PROJECT>/operations/63e50c89-da5f-4697-aeea-447865a82cc4] complete. Result: {
    "metadata": {
        "target": "apps/<MY-PROJECT>/services/default/versions/20160804t151734", 
        "method": "google.appengine.v1beta5.Versions.CreateVersion", 
        "user": "<MY-EMAIL>@gmail.com", 
        "insertTime": "2016-08-04T12:16:31.905Z", 
        "endTime": "2016-08-04T12:24:03.526Z", 
        "@type": "type.googleapis.com/google.appengine.v1beta5.OperationMetadataV1Beta5"
    }, 
    "done": true, 
    "name": "apps/<MY-PROJECT>/operations/63e50c89-da5f-4697-aeea-447865a82cc4", 
    "error": {
        "message": "Timed out when starting VMs.  It's possible that the application code is unhealthy.  (0/2 ready, 2 still deploying).", 
        "code": 13
    }
}
Updating service [default]...failed.
DEBUG: (gcloud.app.deploy) Error Response: [13] Timed out when starting VMs.  It's possible that the application code is unhealthy.  (0/2 ready, 2 still deploying).
Traceback (most recent call last):
  File "/Users/jp/softaa/google-cloud-sdk/lib/googlecloudsdk/calliope/cli.py", line 719, in Execute
    result = args.calliope_command.Run(cli=self, args=args)
  File "/Users/jp/softaa/google-cloud-sdk/lib/googlecloudsdk/calliope/backend.py", line 1404, in Run
    resources = command_instance.Run(args)
  File "/Users/jp/softaa/google-cloud-sdk/lib/surface/app/deploy.py", line 57, in Run
    return deploy_util.RunDeploy(self, args)
  File "/Users/jp/softaa/google-cloud-sdk/lib/googlecloudsdk/command_lib/app/deploy_util.py", line 215, in RunDeploy
    api_client.DeployService(name, version, service, manifest, image)
  File "/Users/jp/softaa/google-cloud-sdk/lib/googlecloudsdk/api_lib/app/appengine_api_client.py", line 89, in DeployService
    return operations.WaitForOperation(self.client.apps_operations, operation)
  File "/Users/jp/softaa/google-cloud-sdk/lib/googlecloudsdk/api_lib/app/api/operations.py", line 70, in WaitForOperation
    encoding.MessageToPyValue(completed_operation.error)))
OperationError: Error Response: [13] Timed out when starting VMs.  It's possible that the application code is unhealthy.  (0/2 ready, 2 still deploying).
ERROR: (gcloud.app.deploy) Error Response: [13] Timed out when starting VMs.  It's possible that the application code is unhealthy.  (0/2 ready, 2 still deploying).

如果您的問題僅是查找此錯誤的原因,我建議您在本地主機上使用Development Server來查找錯誤。 如果不深入了解,我想Node部分不能滿足GAE的要求,或者您正嘗試部署到不支持Node Applications的區域。

GAE不隨Mongo一起提供。 你有兩個選擇

  1. 使用GAE flex並構建自己的mongo容器並使用它
  2. 使用https://mlab.com之類的Mongo雲提供商,他們甚至可以提供免費版本進行測試。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM