작업 1: 템플릿을 사용하여 인프라를 프로비저닝합니다.
작업 2: Azure Load Balancer를 구성합니다.
작업 3: Azure Application Gateway를 구성합니다.
작업 1: 템플릿을 사용하여 인프라 프로비전
랩 가상 머신에서 시작을 클릭하고
PowerShell
을 검색한 다음, 관리자 권한으로 PowerShell을 엽니다.다음 명령을 실행하여 최신 버전의 랩 파일을 가상 머신에 다운로드합니다.
참고: 명령 중 하나라도 실패하면 성공할 때까지 다시 실행합니다.
New-Item -Path "C:\" -Name "LabFiles" -ItemType "directory"
([System.Net.WebClient]::new()).DownloadFile('https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/archive/refs/heads/master.zip', 'C:\LabFiles\master.zip')
Expand-Archive -Path 'C:\LabFiles\master.zip' -DestinationPath 'C:\LabFiles'
Move-item -Path "C:\LabFiles\AZ-104-MicrosoftAzureAdministrator-master\AllFiles\*" -Destination "C:\LabFiles" -confirm:$false
0 Comments