安裝命令:
sudo apt_get ntp
我電腦安裝完出錯:
解決辦法:
配置:(原文:
# /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help
driftfile /var/lib/ntp/ntp.drift #草稿檔案
#日誌檔案
statsdir /var/log/ntpstats/
statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable
#上層ntp server
server 10.138.16.251 prefer
#讓ntp server和其自身保持同步,如果在/etc/ntp.conf中定義的server都不可用時,將使用local時間作為ntp服務提供給ntp客戶端
server 127.127.1.0
fudge 127.127.1.0 stratum 5
#不允許來自公網上ipv4和ipv6客戶端的訪問
restrict -4 default kod notrap nomodify nopeer noquery
restrict -6 default kod notrap nomodify nopeer noquery
#執行上層ntp server的所有許可權
restrict 10.138.16.251
#允許這個網段的對時請求
restrict 10.138.0.0 mask 255.255.0.0 nomodify
# local users may interrogate the ntp server more closely.
restrict 127.0.0.1
restrict ::1
在網上找了幾個可以用的ntp伺服器
time.windows.com
ntp1.aliyun.com
----------修改時區--------------------
tzselect
按提示操作。。。
複製檔案到/etc目錄下
sudo cp /usr/share/zoneinfo/asia/shanghai /etc/localtime
更新時間命令:
ntpdate ntp1.aliyun.com
NTP伺服器配置
ntp簡介 network time protocol 網路時間協議,是用來使計算機時間同步化的一種些以,他可以使計算機對其伺服器或時鐘源做同步化,它可以提供高精準的時間校正 lan上與標準時差小於1毫秒,wan上幾十毫秒 且可介由加密確認的方式來防止惡意的協議攻擊.c s模式 可去授時中心伺服器獲...
ubuntu搭建NTP伺服器
由於公司架構需求部分伺服器走內部網路,這部分伺服器均無外部網路,導致存在乙個問題就是時間無法進行同步,於是網上找了下資料可以通過搭建ntp伺服器來解決這問題,也相對簡單,廢話少說,看底下配置!環境 ubuntu 12.04 server 64版本 服務端及客服端均相同 ntp伺服器ip 內網 192...
Linux配置NTP伺服器
linux配置ntp伺服器 背景當伺服器多了,時間準確與否,一致與否是個大問題。雖然這個問題總是被忽略,但是統一一致的時間是很有必要的。下面說一下在區域網內配置linux時間伺服器的方法。配置的環境及要求 1.假設在192.168.0.0網段內,要以ip為192.168.0.240的linux機器時...