Dela via


Ladda ned hanterade datadiskar till Azure Local

Gäller för: Azure Local, version 23H2

I den här artikeln beskrivs hur du laddar ned en Hanterad Azure-disk från Azure till din lokala Azure-instans. Du kan sedan använda disken för att skapa en avbildning eller koppla den till dina virtuella Arc-datorer (VM) efter behov.

Förutsättningar

Innan du börjar måste du slutföra följande krav:

  • Du har åtkomst till en lokal Azure-instans som distribueras och registreras.
  • Det finns redan en hanterad disk i Azure.

Ladda ned en Hanterad Azure-disk

Ladda ned en Azure-hanterad disk på följande sätt:

  1. Ange parametrar för subscription, resource-group, nameoch custom-location. Ersätt parametrarna i < > med lämpliga värden:

    $subscription = "<Subscription ID>"
    $resource-group = "<Resource group>"
    $name = "<Data disk name>"
    $custom-location = "<Custom location resource ID>"
    
  2. Generera en SAS-URL för disken med Hjälp av Azure CLI:

    az disk grant-access --access-level Read --duration-in-seconds 3600 --name $name --resource-group $resource-group
    
  3. När SAS-URL:en har genererats använder du följande kommando för att ladda ned den till din Azure Local:

    az stack-hci-vm disk create -resource-group $resource-group --disk-file-format vhd --custom-location $custom-location --download-url $download-url --name $name
    

Parametrarna beskrivs i följande tabell:

Parameter Description
subscription Prenumeration som är associerad med din Azure Local.
resource-group Resursgrupp för Azure Local som du associerar med den här avbildningen.
name Namnet på datadisken för Azure Local.
custom-location Resurs-ID för den anpassade platsen för Azure Local.
disk-file-format Filformat för datadisken. Detta kan vara vhd eller vhdx.
download-url SAS-URL:en för den Hanterade Azure-disken.

Här är ett exempel på utdata:

Download Uri for VHD is: https://***** 
{ 
  "extendedLocation": { 
    "name": "/subscriptions/resourceGroups/providers/Microsoft.ExtendedLocation/customLocations/", 
    "type": "CustomLocation" 
  }, 
  "id": "/subscriptions/resourceGroups/providers/Microsoft.AzureStackHCI/virtualHardDisks/httpvhd02", 
  "location": "eastus2euap", 
  "name": "httpvhd02", 
  "properties": { 
    "blockSizeBytes": null, 
    "containerId": "/subscriptions/resourceGroups/providers/Microsoft.AzureStackHCI/storageContainers/UserStorage", 
    "diskFileFormat": "vhd", 
    "diskSizeGb": null, 
    "downloadUrl": null, 
    "dynamic": null, 
    "hyperVGeneration": null, 
    "logicalSectorBytes": null, 
    "physicalSectorBytes": null, 
    "provisioningState": "Succeeded", 
    "status": { 
      "downloadStatus": null, 
      "errorCode": "", 
      "errorMessage": "", 
      "provisioningStatus": null, 
      "uploadStatus": null 
    } 
  }, 
  "resourceGroup": "myresourcegroup", 
  "systemData": { 
    "createdAt": "2024-09-25T20:41:27.685358+00:00", 
    "createdBy": "mycreatedby", 
    "createdByType": "Application", 
    "lastModifiedAt": "2024-09-25T20:41:41.082674+00:00", 
    "lastModifiedBy": "mylastmodifiedby", 
    "lastModifiedByType": "Application" 
  }, 
  "tags": null, 
  " 

Nästa steg

Skapa en avbildning av en lokal virtuell Azure-dator med hjälp av avbildningar i en lokal resurs