部署时出错
Error on deploy
我在尝试部署时不断收到此错误。计费已启用,计算引擎 api 也已启用,所以我真的看不出还能发生什么。
还有其他人遇到过这个吗?
The request to deploy Google Cloud Datalab for boreal-antonym-XXX
failed. Please make sure that the project is enabled for billing.
Additionally, you must be an owner or editor within the project.
Occasionally, a deployment request may fail due to transient errors or
insufficient capacity. If so, please try again.
您必须查看部署日志以了解问题所在。
这些日志被复制到名为“${project}-datalab”的同一项目中的 GCS 存储桶中。
首先,使用gsutil ls
查找匹配的日志:
LOGS_FILE=`gsutil ls gs://boreal-antonym-XXX-datalab/logs | sort | tail -n 1`
该文件将类似于 main-20160701-00-00-00.txt
然后,使用gsutil cat
列出那些日志的内容:
gsutil cat ${LOGS_FILE}
最后,查看该输出以查看显示的错误消息。
我在尝试部署时不断收到此错误。计费已启用,计算引擎 api 也已启用,所以我真的看不出还能发生什么。
还有其他人遇到过这个吗?
The request to deploy Google Cloud Datalab for boreal-antonym-XXX failed. Please make sure that the project is enabled for billing. Additionally, you must be an owner or editor within the project. Occasionally, a deployment request may fail due to transient errors or insufficient capacity. If so, please try again.
您必须查看部署日志以了解问题所在。
这些日志被复制到名为“${project}-datalab”的同一项目中的 GCS 存储桶中。
首先,使用gsutil ls
查找匹配的日志:
LOGS_FILE=`gsutil ls gs://boreal-antonym-XXX-datalab/logs | sort | tail -n 1`
该文件将类似于 main-20160701-00-00-00.txt
然后,使用gsutil cat
列出那些日志的内容:
gsutil cat ${LOGS_FILE}
最后,查看该输出以查看显示的错误消息。