Microsoft Azure stack

Azure Stack Development kit 설치 - "60.140 - Phase 5 - DeployServices fails"

jgpaper 2017. 9. 9. 09:49

Azure Stack Development kit 설치 과정에서 다음과 같은 "60.140 - Phase 5 - DeployServices fails" 발생하는 경우가 있다.

 

것은 Azure Stack Host server BIOS Local System time zone 달라서 발생하는 문제라고 한다

아래의 방법으로 맞추어 주면 된다.


참조 : http://answers.flyppdevportal.com/MVC/Post/Thread/da86ce71-f113-4069-ada6-8bddcea9033d?category=azurestack

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 선택했던 기억이 있다