在GCS中设置日志记录

时间:2015-12-02 15:50:31

标签: google-cloud-storage gsutil

尝试设置GCS存储桶的日志记录。每次我输入命令设置日志记录时我都会得到以下错误。 “命令异常:”logging“命令不支持”file://“URL。你的意思是使用gs:// URL吗?”是我的测试日志存储桶有错误还是我的伐木命令所涵盖的桶?

enter image description here

1 个答案:

答案 0 :(得分:2)

我在按照本教程https://cloud.google.com/nodejs/getting-started/using-cloud-storage时遇到了同样的错误 解决方案很简单。我在//

之后忘记了我的2个正斜杠:gs:

错误的命令:

$ gsutil mb gs:tony-project-123
$ gsutil defacl set public-read gs:tony-project-123

正确命令:

$ gsutil mb gs://tony-project-123
$ gsutil defacl set public-read gs://tony-project-123