Search code examples
azure-storage

Unable to upload VHD file to Azure Storage


My query is that how do we upload VHD files to Azure storage?I have used blob storage and select page blob to upload VHD file but receiving this error :

RESPONSE Status: 400 Page blob is not supported for this account type.

Please advice. thanks


Solution

  • There are some restrictions on using page blob, you need to use Hot access tier, please refer to this official documentation.

    enter image description here

    This official document has a clearer introduction to the Access tiers:

    https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-storage-tiers?tabs=azure-portal

    You can set the access tiers here:

    enter image description here