尝试设置GCS存储桶的日志记录。每次我输入命令设置日志记录时我都会得到以下错误。 “命令异常:”logging“命令不支持”file://“URL。你的意思是使用gs:// URL吗?”是我的测试日志存储桶有错误还是我的伐木命令所涵盖的桶?
答案 0 :(得分:2)
我在按照本教程https://cloud.google.com/nodejs/getting-started/using-cloud-storage时遇到了同样的错误
解决方案很简单。我在//
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