TIME ZONE issues in Cloud Deploy

Samuele Provvedi 150 Reputation points
2024-03-20T11:40:22.7966667+00:00

Hi!,

I have a problem with the time zone when I go to deploy Azure Stack HCI from the cloud.

User's image

I checked that all the servers were in the usual time zone which in my case is Rome and left the default server with which they synchronize

This immage is ASHCI HOST

User's image

User's image

This immage is the time setting in Domain Controller

User's image

Do you know how to solve the problem? maybe I'm doing something wrong

Thanks for help

Azure Stack HCI
Azure Stack HCI
A hyperconverged infrastructure operating system delivered as an Azure service that provides security, performance, and feature updates.
300 questions
0 comments No comments
{count} votes

Accepted answer
  1. Trent Helms - MSFT 2,536 Reputation points Microsoft Employee
    2024-03-20T13:30:59.86+00:00

    HI @Samuele Provvedi

    The error you are seeing is due to the fact the configured NTP server cannot be resolved in DNS. I highlighted the name which is being attempted from the snip of your error below.

    User's image

    To fix this issue, manually configure the NTP servers on your hosts using the following command:

    //manually configure the NTP servers on all nodes to a source that can be resolved and reached
    w32tm /config /manualpeerlist:"<NTP servers>" /syncfromflags:manual /update
    //check the status to be sure the source is correct and syncing
    w32tm /query /status.
    

    For example:

    PS C:\> w32tm /config /manualpeerlist:"time.windows.com" /syncfromflags:manual /update
    The command completed successfully.
    
    PS C:\> w32tm /query /status
    Leap Indicator: 0(no warning)
    Stratum: 4 (secondary reference - syncd by (S)NTP)
    Precision: -23 (119.209ns per tick)
    Root Delay: 0.0424902s
    Root Dispersion: 7.7926960s
    ReferenceId: 0xA83DD74A (source IP:  168.61.215.74)
    Last Successful Sync Time: 3/20/2024 6:27:36 AM
    Source: time.windows.com
    Poll Interval: 10 (1024s)
    

    Hope this helps!

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful