0

我似乎在从快照创建托管磁盘时遇到问题。

看来我只能在美国西部的一个地区创建磁盘。

这是我使用的 PowerShell 脚本:

Get-AzureRmSubscription –SubscriptionName 'MySubscription' | Select-AzureRmSubscription

$resourceGroupName = 'MyResourceGroup';
$diskName = 'MyNewDisk';
$location = 'West US';

$snapshotName = 'MySnapshot';
$snapshot = Get-AzureRmSnapshot -ResourceGroupName $resourceGroupName -SnapshotName $snapshotName;

$diskConfig = New-AzureRmDiskConfig -AccountType $storageType -Location $location -SourceResourceId $snapshot.Id -CreateOption Copy;
$disk = New-AzureRmDisk -Disk $diskConfig -ResourceGroupName $resourceGroupName -DiskName $diskName;

如果我将变量 $region 值更改为“美国东部”或任何其他区域,我会在 PowerShell 中收到错误消息(找不到资源)。

快照本身在美国西部,但我想在美国东部创建一个磁盘。我究竟做错了什么?

4

2 回答 2

3

快照本身在美国西部,但我想在美国东部创建一个磁盘。我究竟做错了什么?

我们无法创建从快照到另一个位置的托管磁盘。

如果要从快照创建托管磁盘到另一个位置,我们应该使用 PowerShell 将托管快照作为 VHD导出/复制到不同区域的存储帐户。

这里是示例脚本:

#Provide the subscription Id of the subscription where snapshot is created
$subscriptionId = "yourSubscriptionId"

#Provide the name of your resource group where snapshot is created
$resourceGroupName ="yourResourceGroupName"

#Provide the snapshot name 
$snapshotName = "yourSnapshotName"

#Provide Shared Access Signature (SAS) expiry duration in seconds e.g. 3600.
#Know more about SAS here: https://docs.microsoft.com/en-us/azure/storage/storage-dotnet-shared-access-signature-part-1
$sasExpiryDuration = "3600"

#Provide storage account name where you want to copy the snapshot. 
$storageAccountName = "yourstorageaccountName"

#Name of the storage container where the downloaded snapshot will be stored
$storageContainerName = "yourstoragecontainername"

#Provide the key of the storage account where you want to copy snapshot. 
$storageAccountKey = 'yourStorageAccountKey'

#Provide the name of the VHD file to which snapshot will be copied.
$destinationVHDFileName = "yourvhdfilename"


# Set the context to the subscription Id where Snapshot is created
Select-AzureRmSubscription -SubscriptionId $SubscriptionId

#Generate the SAS for the snapshot 
$sas = Grant-AzureRmSnapshotAccess -ResourceGroupName $ResourceGroupName -SnapshotName $SnapshotName  -DurationInSecond $sasExpiryDuration -Access Read 

#Create the context for the storage account which will be used to copy snapshot to the storage account 
$destinationContext = New-AzureStorageContext –StorageAccountName $storageAccountName -StorageAccountKey $storageAccountKey  

#Copy the snapshot to the storage account 
Start-AzureStorageBlobCopy -AbsoluteUri $sas.AccessSAS -DestContainer $storageContainerName -DestContext $destinationContext -DestBlob $destinationVHDFileName

#Monitor status
Get-AzureStorageBlobCopyState -Context $destinationContext -Blob $destinationVHDFileName -Container $storageContainerName

有关它的更多信息,请参阅此链接

于 2017-12-12T09:14:21.570 回答
2

您可以简单地使用 azure 站点恢复并添加 azure2azure 服务并将您的 vm 复制到其他跨区域,这不会重新启动 v,它会在需要复制的 vm 中安装 azure 站点恢复软件,这将开始复制,请注意,为了更快地复制虚拟机,请使用高级托管磁盘。

注意:如果您将美国东部 2 之类的东西复制到北欧,这将不受支持,有一个完整的文档说明了哪些区域支持复制。如果您希望减少跨区域复制托管磁盘的停机时间,这是一个很好的方法。

如果您遵循此方法,则无需拍摄快照。

如果您有任何其他疑问,请告诉我。

于 2018-06-27T11:03:57.940 回答