1.同步網路時間到系統時間ntpdate命令
[root@localhost test1]# date
tue sep 6 07:12:03 cst 2016
[root@localhost test1]# ntpdate cn.pool.ntp.org
6 sep 09:18:23 ntpdate[13047]: step time server 120.25.108.11 offset 7566.199829 sec
[root@localhost test1]# date
tue sep 6 09:18:25 cst 2016
cn.pool.ntp.org (中國國家授時中心的官方時間同步伺服器ip網域名稱)
同步網路時間到系統時間後,就可以用hwclock -w將系統時間同步到硬體時間。
2.自己搭建時間同步伺服器
時間同步伺服器設定:
systemctl stop firewalld
vim /etc/chrony.conf
allow 172.25.254.0/24
local stratum 10
systemctl restart chrony
3.如何自動同步系統時間(同步伺服器時間)
chronyc sources -v檢視與誰同步著。
1.確定時間源位址(同步誰的時間)
172.25.254.254
2.確定客戶主機使用的時間同步服務
chronyd.service
3.在chronyd.service服務中載入時間源位址
vim /etc/chrony.conf
#systemctl restart chronyd.service
Linux時間同步服務
最近公司的伺服器時間一直不準確,找了好幾個時間伺服器,經過測試上海交大的還算靠譜,位址為 ntp.sjtu.edu.cn 上海交通大學網路中心ntp伺服器位址 202.120.2.101 上海交通大學網路中心ntp伺服器位址 root zabbix crontab l 10 usr sbin ntp...
linux時間服務定時同步
部署ntp服務端 需要連線外網,centos 7,本地ip 192.168.0.111 1 yum install y ntp 安裝ntp服務 2 編輯ntp的配置檔案vi etc ntp.conf server 0.centos.pool.ntp.org iburst server 1.cento...
Linux 時間同步服務命令
linux伺服器執行久時,系統時間就會存在一定的誤差,一般情況下可以使用date命令進行時間設定,但 在做資料庫集群分片等操作時對多台機器的時間差是有要求的,此時就需要使用ntpdate進行時間同步。date命令 date 檢視當前時間,結果如下 2017年 01月 06日 星期五 13 02 55...