Linux7.x Chrony時間服務架設
在不連線外網的情況下提供時間同步服務
RHEL7.x及CentOS7.x以上預設安裝有chrony服務
-----------服務端
yum -y install chrony
vim /etc/chrony.conf
#新增以下引數,IP地址為本機IP,同時可以註釋掉其他的服務地址
server 192.168.10.254 iburst
# Serve time even if not synchronized to a time source.開啟該服務,在不與外網同步時間的情況下,依然為下層終端提供同步服務
local stratum 10
儲存後開啟服務
systemctl restart chronyd
systemctl enable chronyd
防火牆設定
firewall-cmd --permanent --add-service=ntp
firewall-cmd --reload
------------終端
vim /etc/ntp.conf
#新增以下引數(ntp服務適用rhel6.x及以下版本)
server 192.168.10.254
restrict 192.168.10.254 nomodify notrap noqery
service ntpd restart
chkconfig ntpd on
#手動同步
ntpdate -u 192.168.10.254
-------------windows系統
直接時間設定中設定同步
對於在域中的windows作業系統
執行“gpedit.msc”,依次展開“計算機配置”-“管理模版”-“系統”-“Windows 時間服務”-“時間提供程式”-“配置 Windows NTP 客戶端”,啟用該項配置,並將型別更改為“NTP”,設定時間伺服器地址.
立即生效組策略
gpupdate /force