如何挂起/恢复GCE VM

时间:2018-12-11 05:13:37

标签: google-cloud-platform cloud virtual-machine google-compute-engine

我们需要具有挂起/恢复GCE VM的能力,以优化计算引擎资源的使用。 云 现在,此功能在gcloud alpha中可用:  gcloud alpha计算实例挂起INSTANCE_NAMES [INSTANCE_NAMES…] [--async] [-discard-local-ssd] [--zone = ZONE] [GCLOUD_WIDE_FLAG…]

但是当我执行此命令时,出现以下错误: error-message HTTP错误400:资源使用无效:“挂起实例功能不适用于该项目。” 谁能建议我暂停Google Cloud VM的方法? 从陈述的错误中我了解到我们需要一些权限才能在项目中包括功能。有人可以建议我在该项目中包括挂起实例功能吗?

2 个答案:

答案 0 :(得分:1)

您需要申请此功能的早期访问,并在Google中注册您的项目。与Google Support联系。在请求中包括您的电子邮件地址,项目ID以及您将如何使用API​​。

不要期望快速反应。我的请求有时需要数周才能获得批准。

答案 1 :(得分:0)

此功能现在在GCP的beta模式下可用。

gcloud beta compute instances suspend <instance-name>

gcloud beta compute instances resume <instance-name>

我在Gcloud SDK上进行了尝试,它提示我安装对我有用的beta实用程序。

更多详细信息,请参见 https://cloud.google.com/sdk/gcloud/reference/beta/compute/instances/suspend