server - How can you upgrade Azure Upgrade A-Series VM to D-Series VM? -


the recent information find while scouring net post 6 months old (back toward original deployment of d-series servers). how can seamlessly upgrade a-series azure vm d-series azure vm without huge headache?

to find out sizes available in region (and see instancesize naming sceheme use in powershell) use powershell cmdlet:

get-azurelocation | where-object {$_.displayname.contains("<your-region>")} 

view virtualmachinerolesizes property see sizes have access to.

to update vm can use following set of commands:

get-azurevm -servicename <cloudservice> -name <vmname> | set-azurevmsize -instancesize <sizevalue> | update-azurevm 

if run above command on running vm restarted in order provision on right host infrastructure support desired series.


Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -