大小更改后无法启动 Azure VM
Unable to start Azure VM after size change
我有 Azure VM(Windows 服务器 2012R2 和 SQL 服务器)。
由于更改了大小,我无法启动 VM,当我尝试启动时出现以下失败错误:
Provisioning state Provisioning failed. One or more errors occurred while preparing VM disks. See disk instance view for details.. DiskProcessingError
DISKS
MyVM_OsDisk_1_47aaea403b8948fb8d0e3ba0e81e2fas Provisioning failed. Requested operation cannot be performed because storage account type 'Premium_LRS' is not supported for VM size 'Standard_D2_v3'.. VMSizeDoesntSupportPremiumStorage
MyVM_disk2_ccc04be996a5471688d357bf6f955fab Provisioning failed. Requested operation cannot be performed because storage account type 'Premium_LRS' is not supported for VM size 'Standard_D2_v3'.. VMSizeDoesntSupportPremiumStorage
问题是什么,我该如何解决?
谢谢!
注意:高级存储不能用于 D 系列 VM。
要解决此问题,您需要使用标准存储或使用具有高级存储支持的 VM 系列之一(DS 系列、DSv2 系列、GS 系列、Ls 系列和 Fs 系列) .
如错误详细信息所示,这是因为 D2_V3 VM 大小不支持高级磁盘。
解决方案:
如果您想为您的 VM 使用 SSD 高级磁盘,您可以 Resize your VM size 到 DS 系列、DSv2 系列、GS 系列、Ls 系列和 Fs 系列虚拟机。
如果您不介意使用Standard HDD磁盘,但想使用D2_V3 VMsize。您可以将磁盘类型更改为标准(如果您的磁盘是托管的)。
取消分配您的 VM > 磁盘 > 选择磁盘 > 将帐户类型更改为标准 > 保存
另外,我假设您的磁盘是托管的。如果不是,您最好调整 VM 的大小而不是改回标准磁盘。
我有 Azure VM(Windows 服务器 2012R2 和 SQL 服务器)。
由于更改了大小,我无法启动 VM,当我尝试启动时出现以下失败错误:
Provisioning state Provisioning failed. One or more errors occurred while preparing VM disks. See disk instance view for details.. DiskProcessingError
DISKS MyVM_OsDisk_1_47aaea403b8948fb8d0e3ba0e81e2fas Provisioning failed. Requested operation cannot be performed because storage account type 'Premium_LRS' is not supported for VM size 'Standard_D2_v3'.. VMSizeDoesntSupportPremiumStorage
MyVM_disk2_ccc04be996a5471688d357bf6f955fab Provisioning failed. Requested operation cannot be performed because storage account type 'Premium_LRS' is not supported for VM size 'Standard_D2_v3'.. VMSizeDoesntSupportPremiumStorage
问题是什么,我该如何解决?
谢谢!
注意:高级存储不能用于 D 系列 VM。
要解决此问题,您需要使用标准存储或使用具有高级存储支持的 VM 系列之一(DS 系列、DSv2 系列、GS 系列、Ls 系列和 Fs 系列) .
如错误详细信息所示,这是因为 D2_V3 VM 大小不支持高级磁盘。
解决方案:
如果您想为您的 VM 使用 SSD 高级磁盘,您可以 Resize your VM size 到 DS 系列、DSv2 系列、GS 系列、Ls 系列和 Fs 系列虚拟机。
如果您不介意使用Standard HDD磁盘,但想使用D2_V3 VMsize。您可以将磁盘类型更改为标准(如果您的磁盘是托管的)。
取消分配您的 VM > 磁盘 > 选择磁盘 > 将帐户类型更改为标准 > 保存
另外,我假设您的磁盘是托管的。如果不是,您最好调整 VM 的大小而不是改回标准磁盘。