■ 고가용성 가상 머신을 만드는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
New-AzResourceGroup -Name TestResourceGroup -Location EastUS New-AzAvailabilitySet ` -Location EastUS ` -Name TestAvailabilitySet ` -ResourceGroupName TestResourceGroup ` -Sku aligned ` -PlatformFaultDomainCount 2 ` -PlatformUpdateDomainCount 2 $credential = Get-Credential for($i = 1; $i -le 2; $i++) { New-AzVm ` -ResourceGroupName TestResourceGroup ` -Name TestVM$i ` -Location EastUS ` -VirtualNetworkName TestVNet ` -SubnetName TestSubnet ` -SecurityGroupName TestNetworkSecurityGroup ` -PublicIpAddressName TestPublicIpAddress$i ` -AvailabilitySetName TestAvailabilitySet ` -Credential $credential } ※ TestResourceGroup : 리소스 그룹명 EastUS : 지역명 TestAvailabilitySet : 가용성 집합명 TestVM$i : 가상 머신명(예 : TestVM1, TestVM2) TestVNet : 가상 네트워크명 TestSubnet : 서브넷명 TestNetworkSecurityGroup : 네트워크 보안 그룹명 TestPublicIpAddress$i : 공인 IP 주서명(예 : TestPublicIpAddress1, TestPublicIpAddress2) |