Azure Stack Development kit 설치 - "60.140 - Phase 5 - DeployServices fails"
Azure Stack Development kit 설치 과정에서 다음과 같은 "60.140 - Phase 5 - DeployServices fails" 이 발생하는 경우가 있다.
이 것은 Azure Stack Host server BIOS 와 Local System time zone이 달라서 발생하는 문제라고 한다.
아래의 방법으로 맞추어 주면 된다.
Make sure the CMOS clock is set to UTC To check if ASDK time is in sync with UTC run following PowerShell and make sure the difference is + or – a second.
### Get ASDK time server, sync status and UTC time differential - Before Fix $VM = Get-VM Invoke-command -Computername $VM.name -ScriptBlock {get-date} W32tm /query /source ; get-date Invoke-command -Computername AzS-DC01 -ScriptBlock {w32tm /stripchart /Computer:time.windows.com/dataonly /samples:5}
Example output: 18:37:02, -00.0104484s 18:37:04, +00.0019010s
To set the ASDK-Host & AzS VMs to UTC. ### Sync Azs-DC01 to pool.ntp.org Invoke-command -Computername AzS-DC01 -ScriptBlock {w32tm /config /update /manualpeerlist:pool.ntp.org/syncfromflags:MANUAL} Invoke-command -Computername AzS-DC01 -ScriptBlock {w32tm /stripchart /Computer:time.windows.com/dataonly /samples:5} Invoke-command -Computername AzS-DC01 -ScriptBlock {W32tm /query /source ; get-date} ### Sync ADHK-Host to Azs-DC01 w32tm /config /update /manualpeerlist:AzS-DC01.azurestack.local /syncfromflags:MANUAL W32tm /resync /rediscover ### Sync VMs to Azs-DC01 $VM = Get-VM Invoke-command -Computername $VM.name -ScriptBlock { w32tm /resync /force}
|
하지만, 이 방법으로도 나는 성공하지 못 했다.
결국 Azure Stack Development Kit 설치 Server를 Windows Server 2016 부터 다시 설치하였다.
어쩌면 이 문제 있을 수도 있다. 설치 시 "Time and currency format" 를 기본으로 두었다. 위의 문제가 발생 할 때 나는 Korea 로 선택했던 기억이 있다.