项目的结算帐号未打开 GCP
Billing account for project is not open GCP
我正在尝试使用命令行将计算实例启动到 GCP:
gcloud compute instances create instance-1 --zone=uscentral1-a
它告诉我该项目的账单未开放:
API [compute.googleapis.com] not enabled on project [847006780503].
Would you like to enable and retry (this will take a few minutes)?
(y/N)? Y
Enabling service [compute.googleapis.com] on project [847006780503]...
ERROR: (gcloud.compute.instances.create) FAILED_PRECONDITION: Billing account for project '847006780503' is not open. Billing must be enabled for activation of service(s) 'compute.googleapis.com,compute.googleapis.com,compute.googleapis.com' to proceed.
- '@type': type.googleapis.com/google.rpc.PreconditionFailure
violations:
- subject: ?error_code=390002&project=847006780503&services=compute.googleapis.com&services=compute.googleapis.com&services=compute.googleapis.com
type: googleapis.com/billing-enabled
- '@type': type.googleapis.com/google.rpc.ErrorInfo
domain: serviceusage.googleapis.com/billing-enabled
metadata:
project: '847006780503'
services: compute.googleapis.com,compute.googleapis.com,compute.googleapis.com
reason: UREQ_PROJECT_BILLING_NOT_OPEN
我可以在控制台中启动计算实例,但不能在 CLI 中启动。
如何为我的项目启用计费以便我可以使用 CLI 启动实例?
要确认您的项目已启用计费功能,请执行以下步骤:
- 登录Google Cloud Console。
- 在 Google 云控制台页面顶部的项目下拉列表(我的项目)中,select 您的项目。
- 打开控制台导航菜单,然后select计费。
如果项目未启用计费,将显示一个弹出窗口 window,其文本类似于:
"This project is not linked to a billing account"
如果是这种情况,您可以按照以下文档对您的项目启用计费:Enable billing for an existing project
要重新启用项目的计费,请执行以下操作。
Sign in to the Manage billing accounts page 在 Google 云控制台中。
Select 我的项目 选项卡可查看项目列表以及每个项目的关联 Cloud Billing 帐户。
从项目列表中,找到要为其重新启用计费的项目,然后单击它旁边的菜单。
Select更改结算方式,然后选择所需的目标 Cloud Billing 帐户。
我正在尝试使用命令行将计算实例启动到 GCP:
gcloud compute instances create instance-1 --zone=uscentral1-a
它告诉我该项目的账单未开放:
API [compute.googleapis.com] not enabled on project [847006780503].
Would you like to enable and retry (this will take a few minutes)?
(y/N)? Y
Enabling service [compute.googleapis.com] on project [847006780503]...
ERROR: (gcloud.compute.instances.create) FAILED_PRECONDITION: Billing account for project '847006780503' is not open. Billing must be enabled for activation of service(s) 'compute.googleapis.com,compute.googleapis.com,compute.googleapis.com' to proceed.
- '@type': type.googleapis.com/google.rpc.PreconditionFailure
violations:
- subject: ?error_code=390002&project=847006780503&services=compute.googleapis.com&services=compute.googleapis.com&services=compute.googleapis.com
type: googleapis.com/billing-enabled
- '@type': type.googleapis.com/google.rpc.ErrorInfo
domain: serviceusage.googleapis.com/billing-enabled
metadata:
project: '847006780503'
services: compute.googleapis.com,compute.googleapis.com,compute.googleapis.com
reason: UREQ_PROJECT_BILLING_NOT_OPEN
我可以在控制台中启动计算实例,但不能在 CLI 中启动。
如何为我的项目启用计费以便我可以使用 CLI 启动实例?
要确认您的项目已启用计费功能,请执行以下步骤:
- 登录Google Cloud Console。
- 在 Google 云控制台页面顶部的项目下拉列表(我的项目)中,select 您的项目。
- 打开控制台导航菜单,然后select计费。
如果项目未启用计费,将显示一个弹出窗口 window,其文本类似于:
"This project is not linked to a billing account"
如果是这种情况,您可以按照以下文档对您的项目启用计费:Enable billing for an existing project
要重新启用项目的计费,请执行以下操作。
Sign in to the Manage billing accounts page 在 Google 云控制台中。
Select 我的项目 选项卡可查看项目列表以及每个项目的关联 Cloud Billing 帐户。
从项目列表中,找到要为其重新启用计费的项目,然后单击它旁边的菜单。
Select更改结算方式,然后选择所需的目标 Cloud Billing 帐户。