Google Cloud Compute “gcutil” deprecated

白昼怎懂夜的黑 提交于 2019-12-25 18:17:54

问题


I'm new to Google Cloud Compute and I'm no developer or coder. But I've been following the information step by step guide. http://www.filiwiese.com/running-screaming-frog-on-google-cloud/

Unfortunately as of today "gcutil" has deprecated and I'm at a loss how to follow the instructions.

I tried understanding Googles info but no joy.

I'm hoping that someone can explain to me how to proceed.

Thanks


回答1:


The gcutil tool has been deprecated in favor of gcloud, part of Google Cloud SDK.

There's a guide to translating gcutil commands to gcloud commands, e.g.:

Create an instance:

  • gcutil addinstance INSTANCE
  • gcloud compute instances create INSTANCE

Delete an instance:

  • gcutil deleteinstance INSTANCE
  • gcloud compute instances delete INSTANCE \ [--keep-disks {boot,all,none}]

Other commands are listed in the document.



来源:https://stackoverflow.com/questions/31304351/google-cloud-compute-gcutil-deprecated

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!