自定义映像类似于应用商店映像,不同的是自定义映像的创建者是你自己。 自定义映像可用于启动配置,例如预加载应用程序、应用程序配置和其他 OS 配置。 在本教程中,你将创建自己的 Azure 虚拟机自定义映像。 你将学习如何执行以下操作:
使用 Sysprep 通用化 VM
创建自定义映像
从自定义映像创建 VM
列出订阅中的所有映像
删除映像
本教程需要 Azure PowerShell 模块 3.6 或更高版本。 运行Get-Module -ListAvailable AzureRM即可查找版本。 如果需要升级,请参阅安装 Azure PowerShell 模块。
开始之前
下列步骤详细说明了如何将现有 VM 转换为可重用自定义映像,用于创建新的 VM 实例。
若要完成本教程中的示例,必须现有一个虚拟机。 如果需要,此脚本示例可为你创建一个虚拟机。 按照教程进行操作时,请根据需要替换资源组和 VM 名称。
准备 VM
若要创建虚拟机的映像,需通过以下方式准备 VM:通用化 VM、解除分配,然后在 Azure 中将源 VM 标记为通用化。
使用 Sysprep 通用化 Windows VM
Sysprep 将删除所有个人帐户信息及其他某些数据,并准备好要用作映像的计算机。 有关 Sysprep 的详细信息,请参阅如何使用 Sysprep:简介。
连接到虚拟机。
以管理员身份打开“命令提示符”窗口。 将目录切换到%windir%\system32\sysprep,然后运行sysprep.exe。
在“系统准备工具”对话框中,选择“进入系统全新体验(OOBE)”,确保已选中“通用化”复选框。
在“关机选项”中选择“关机”,然后单击“确定”。
Sysprep 在完成运行后会关闭虚拟机。 请勿重启 VM。
解除分配 VM 并将其标记为通用化
若要创建映像,需解除分配 VM,并在 Azure 中将其标记为通用化。
使用Stop-AzureRmVM解除分配 VM。
PowerShell复制
Stop-AzureRmVM-ResourceGroupNamemyResourceGroup-NamemyVM-Force
使用Set-AzureRmVm将虚拟机的状态设置为-Generalized。
PowerShell复制
Set-AzureRmVM-ResourceGroupNamemyResourceGroup-NamemyVM-Generalized
创建映像
现在,可以使用New-AzureRmImageConfig和New-AzureRmImage来创建 VM 的映像。 以下示例从名为 myVM 的 VM 创建名为 myImage 的映像。
获取虚拟机。
PowerShell复制
$vm=Get-AzureRmVM-NamemyVM-ResourceGroupNamemyResourceGroup
创建映像配置。
PowerShell复制
$image=New-AzureRmImageConfig-LocationChinaEast-SourceVirtualMachineId$vm.ID
创建映像。
PowerShell复制
New-AzureRmImage-Image$image-ImageNamemyImage-ResourceGroupNamemyResourceGroup
从映像创建 VM
现在,你已有了一个映像,可以从该映像创建一个或多个新 VM。 从自定义映像创建 VM 与使用应用商店映像创建 VM 非常相似。 如果使用应用商店映像,需提供有关映像、映像提供程序、产品/服务、SKU 和版本的信息。 如果使用自定义映像,则仅需提供自定义映像资源的 ID。
在以下脚本中,我们使用Get-AzureRmImage创建变量 $image 来存储自定义映像的相关信息,然后使用Set-AzureRmVMSourceImage并通过刚创建的 $image 变量指定 ID。
此脚本使用自定义映像在 China North 位置中名为 myResourceGroupFromImage 的新资源组中创建名为 myVMfromImage 的 VM。
PowerShell复制
$cred=Get-Credential-Message"Enter a username and password for the virtual machine."New-AzureRmResourceGroup-NamemyResourceGroupFromImage-LocationChinaEast$subnetConfig=New-AzureRmVirtualNetworkSubnetConfig`-NamemySubnet `-AddressPrefix192.168.1.0/24$vnet=New-AzureRmVirtualNetwork`-ResourceGroupNamemyResourceGroupFromImage `-LocationChinaEast `-NameMYvNET `-AddressPrefix192.168.0.0/16`-Subnet$subnetConfig$pip=New-AzureRmPublicIpAddress`-ResourceGroupNamemyResourceGroupFromImage `-LocationChinaEast `-Name"mypublicdns$(Get-Random)"`-AllocationMethodStatic `-IdleTimeoutInMinutes4$nsgRuleRDP=New-AzureRmNetworkSecurityRuleConfig`-NamemyNetworkSecurityGroupRuleRDP `-ProtocolTcp `-DirectionInbound `-Priority1000`-SourceAddressPrefix* `-SourcePortRange* `-DestinationAddressPrefix* `-DestinationPortRange3389`-AccessAllow$nsg=New-AzureRmNetworkSecurityGroup`-ResourceGroupNamemyResourceGroupFromImage `-LocationChinaEast `-NamemyNetworkSecurityGroup `-SecurityRules$nsgRuleRDP$nic=New-AzureRmNetworkInterface`-NamemyNic `-ResourceGroupNamemyResourceGroupFromImage `-LocationChinaEast `-SubnetId$vnet.Subnets[0].Id `-PublicIpAddressId$pip.Id `-NetworkSecurityGroupId$nsg.Id$vmConfig=New-AzureRmVMConfig`-VMNamemyVMfromImage `-VMSizeStandard_D1 |Set-AzureRmVMOperatingSystem-Windows`-ComputerNamemyComputer `-Credential$cred# Here is where we create a variable to store information about the image$image=Get-AzureRmImage`-ImageNamemyImage `-ResourceGroupNamemyResourceGroup# Here is where we specify that we want to create the VM from and image and provide the image ID$vmConfig=Set-AzureRmVMSourceImage-VM$vmConfig-Id$image.Id$vmConfig=Add-AzureRmVMNetworkInterface-VM$vmConfig-Id$nic.IdNew-AzureRmVM`-ResourceGroupNamemyResourceGroupFromImage `-LocationChinaEast `-VM$vmConfig
映像管理
下面提供了一些常见的管理映像任务示例,并说明了如何使用 PowerShell 完成这些任务。
按名称列出所有映像。
PowerShell复制
$images=Find-AzureRMResource-ResourceTypeMicrosoft.Compute/images$images.name
删除映像。 此示例将从 myResourceGroup 中删除名为 myOldImage 的映像。
PowerShell复制
Remove-AzureRmImage`-ImageNamemyOldImage `-ResourceGroupNamemyResourceGroup
后续步骤
在本教程中,你已创建了一个自定义 VM 映像。 你已学习了如何执行以下操作:
使用 Sysprep 通用化 VM
创建自定义映像
从自定义映像创建 VM
列出订阅中的所有映像
删除映像
请转到下一教程,了解如何创建高度可用的虚拟机。
立即访问http://market.azure.cn