zoukankan      html  css  js  c++  java
  • 内网Windows Server时间自动同步

    一、 时间服务器

    • 启用NTPServer 
      打开注册表 
      [HKEY_LOCAL_MACHINESYSTEMControlSet001servicesW32TimeTimeProvidersNtpServer] 
      Enable = 1
    • 设定强制主机(将其自身设宣布为可靠的时间源) 
      打开注册表 
      [HKEY_LOCAL_MACHINESYSTEMControlSet001servicesW32Timeconfig] 
      AnnounceFlags = 5 
    • 重启W32Time服务 
      Run—>cmd 
      net stop w32time 
      net start w32time

    二、客户机

    1. 在”Internet时间设置“中键入作为Server的计算机IP,点击立即更新,等待同步成功即可。 
    2. Run—>gpedit.msc 打开本地组策略编辑器
      依次点击“Computer Configuration”---“Administrative Templates”---“System”--"Windows Time Service"--"Time Providers"
      
      双击打开"Configure Windows NTP Client"
      选项卡中使”Enable“选中,
      ”Options“内Type选择”NTP“,
      NtpServer填写上面时间服务器的IP,
      ”SpecialPollInterval“填写同步间隔,单位为毫秒,这里使用3600表示一小时。
    3. 生效组策略
      Run—>cmd
      gpupdate /force
    4. 提高同步精度
      • 打开注册表
      • 修改NtpClient属性
        HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpClient
        双击 SpecialPollInterval 键值,
        将对话框中的“Base”选择到“Decimal”上,
        "Value data"值设置为3600,
        点击”OK“关闭对话框。
      • 修改Parameters属性
        选中Parameters,将NtpServer键值修改为时间服务器IP, 然后点击“OK”按钮保存。

           

  • 相关阅读:
    Leetcode 171. Excel Sheet Column Number
    Leetcode 206 Reverse Linked List
    Leetcode 147. Insertion Sort List
    小明一家人过桥
    Leetcode 125. Valid Palindrome
    Leetcode 237. Delete Node in a Linked List
    Leetcode 167 Two Sum II
    张老师的生日
    Leetcode 27. Remove Element
    Leetcode 283. Move Zeroes
  • 原文地址:https://www.cnblogs.com/lnkDel/p/8805008.html
Copyright © 2011-2022 走看看