代码之家  ›  专栏  ›  技术社区  ›  Drxxd

如何将azure VM映像移动到其他位置

  •  1
  • Drxxd  · 技术社区  · 6 年前

    我在美国东部有一个带有托管磁盘的azure VM映像,我想将其移动/复制到西欧。

    有什么简单的方法吗?

    错误:找不到资源服务器Linux\u OsDisk\u 1\u C208679747734937B1OA1525AA84A7D7

    2 回复  |  直到 6 年前
        1
  •  1
  •   Joy Wang    6 年前

    您可以使用azurepowershell复制托管映像,创建快照并将其复制到另一个区域,然后创建映像。这是一个 similar issue .

    创建快照:

    <# -- Create a snapshot of the OS (and optionally data disks) from the generalized VM -- #>
    $vm = Get-AzureRmVM -ResourceGroupName $resourceGroupName -Name $vmName
    $disk = Get-AzureRmDisk -ResourceGroupName $resourceGroupName -DiskName $vm.StorageProfile.OsDisk.Name
    $snapshot = New-AzureRmSnapshotConfig -SourceUri $disk.Id -CreateOption Copy -Location $region
    
    $snapshotName = $imageName + "-" + $region + "-snap"
    
    New-AzureRmSnapshot -ResourceGroupName $resourceGroupName -Snapshot $snapshot -SnapshotName $snapshotName
    

    # Create the name of the snapshot, using the current region in the name.
    $snapshotName = $imageName + "-" + $region + "-snap"
    
    # Get the source snapshot
    $snap = Get-AzureRmSnapshot -ResourceGroupName $resourceGroupName -SnapshotName $snapshotName
    
    # Create a Shared Access Signature (SAS) for the source snapshot
    $snapSasUrl = Grant-AzureRmSnapshotAccess -ResourceGroupName $resourceGroupName -SnapshotName $snapshotName -DurationInSecond 3600 -Access Read
    
    # Set up the target storage account in the other region
    $targetStorageContext = (Get-AzureRmStorageAccount -ResourceGroupName $resourceGroupName -Name $storageAccountName).Context
    New-AzureStorageContainer -Name $imageContainerName -Context $targetStorageContext -Permission Container
    
    # Use the SAS URL to copy the blob to the target storage account (and thus region)
    Start-AzureStorageBlobCopy -AbsoluteUri $snapSasUrl.AccessSAS -DestContainer $imageContainerName -DestContext $targetStorageContext -DestBlob $imageBlobName
    Get-AzureStorageBlobCopyState -Container $imageContainerName -Blob $imageBlobName -Context $targetStorageContext -WaitForComplete
    
    # Get the full URI to the blob
    $osDiskVhdUri = ($targetStorageContext.BlobEndPoint + $imageContainerName + "/" + $imageBlobName)
    
    # Build up the snapshot configuration, using the target storage account's resource ID
    $snapshotConfig = New-AzureRmSnapshotConfig -AccountType StandardLRS `
                                                -OsType Windows `
                                                -Location $targetRegionName `
                                                -CreateOption Import `
                                                -SourceUri $osDiskVhdUri `
                                                -StorageAccountId "/subscriptions/${sourceSubscriptionId}/resourceGroups/${resourceGroupName}/providers/Microsoft.Storage/storageAccounts/${storageAccountName}"
    
    # Create the new snapshot in the target region
    $snapshotName = $imageName + "-" + $targetRegionName + "-snap"
    $snap2 = New-AzureRmSnapshot -ResourceGroupName $resourceGroupName -SnapshotName $snapshotName -Snapshot $snapshotConfig
    

    创建图像:

    <# -- In the second subscription, create a new Image from the copied snapshot --#>
    Select-AzureRmSubscription -SubscriptionId $targetSubscriptionId
    
    $snap = Get-AzureRmSnapshot -ResourceGroupName $resourceGroupName -SnapshotName $snapshotName
    
    $imageConfig = New-AzureRmImageConfig -Location $destinationRegion
    
    Set-AzureRmImageOsDisk -Image $imageConfig `
                            -OsType Windows `
                            -OsState Generalized `
                            -SnapshotId $snap.Id
    
    New-AzureRmImage -ResourceGroupName $resourceGroupName `
                     -ImageName $imageName `
                     -Image $imageConfig
    

    link .