繁体   English   中英

Azure 存储 blob - ConditionNotMet

[英]Azure storage blob - ConditionNotMet

我曾尝试从 azure 存储 (az cli) 下载 blob,但我得到了这个。 有人可以知道如何解决吗?

ErrorCode: ConditionNotMet
<?xml version="1.0" encoding="utf-8"?><Error><Code>ConditionNotMet</Code><Message>The condition specified using HTTP conditional header(s) is not met.
RequestId:8nnpca91-201e-011p-7n9e-b1a77b000900
Time:2020-11-23T11:48:11.4500961Z</Message></Error>

我无法在不知道您尝试运行的确切命令的情况下重现您的问题,但这里是az storage blob download命令的基本语法和一个有效示例:

az storage blob download --container-name <storage-account-container-name> --file <file-path-to-write-out-to> --name <blob-name> --account-name <storage-account-name> --account-key <storage-account-access-key>

例子:

$ az storage blob download --container-name testbkp --file backup1.log --name backup1.log --account-name myStorageAccount --account-key r+nHfm5ZZxf9r4TueZ7bmkVFwO8cBi+wmq/9g==

Finished[#############################################################]  100.0000%
{
  "content": null,
  "deleted": false,
  "metadata": {},
  "name": "backup1.log",
  "properties": {
    "appendBlobCommittedBlockCount": null,
    "blobTier": null,
    "blobTierChangeTime": null,
    "blobTierInferred": false,
    "blobType": "BlockBlob",
    "contentLength": 503,
    "contentRange": "bytes 0-502/503",
    "contentSettings": {
      "cacheControl": null,
      "contentDisposition": null,
      "contentEncoding": null,
      "contentLanguage": null,
      "contentMd5": "b8Lzmr+LfkdoZaPujOqVlg==",
      "contentType": "application/octet-stream"
    },
    "copy": {
      "completionTime": null,
      "id": null,
      "progress": null,
      "source": null,
      "status": null,
      "statusDescription": null
    },
    "creationTime": "2020-10-11T16:23:35+00:00",
    "deletedTime": null,
    "etag": "\"0x8D86E0100F405DC\"",
    "lastModified": "2020-10-11T16:23:35+00:00",
    "lease": {
      "duration": null,
      "state": "available",
      "status": "unlocked"
    },
    "pageBlobSequenceNumber": null,
    "remainingRetentionDays": null,
    "serverEncrypted": true
  },
  "snapshot": null
}

请注意,您传递给帐户的参数名称区分大小写。 如果您在使用最新版本的 Azure CLI(截至今天为2.15.1 )后仍然遇到问题,您也可以尝试使用Azure Cloud Shell

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM