1. 程式人生 > >ntp,chrony時間服務部署

ntp,chrony時間服務部署

ntp chrony

安裝ntp時間服務器

操作系統版本
cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
1.yum install -y ntp

2.vi /etc/ntp.conf //添加如下
restrict default nomodify //nomodify客戶端可以同步
server ntp1.aliyun.com //將默認時間同步源註釋改用可用源

3.然後啟動NTP服務
註意:如果有同步時間的定時任務要將其註銷,否則會沖突
service ntpd start
4.設置開機自啟動
chkconfig ntpd on
5.局域網內客戶端定時任務同步本地ntp服務器

客戶機要等幾分鐘再與新啟動的ntp服務器進行時間同步,否則會提示
no server suitable for synchronization found錯誤

ntpq -p //查看遠程同步主機
ntpstat //查看是否通

[root@m02 ~]# ntpstat
unsynchronised
time server re-starting
polling server every 8 s
和遠程同步,大概需要5-10分鐘


部署chrony時間同步服務
1.yum -y install chrony
2.cp /etc/chrony.conf{,.bak}
3.vi /etc/chrony.conf
Use public servers from the pool.ntp.org project.

Please consider joining the pool (http://www.pool.ntp.org/join.html).
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
server ntp2.aliyun.com //同步阿裏雲時間服務器

Allow NTP client access from local network.
#allow 192.168.0.0/16

allow 172.16.1.0/24 //允許的網段/主機同步

4.systemctl start chronyd //啟動chrony

客戶端同步
[root@fitme ~]# ntpdate 172.16.1.62
13 Mar 18:13:29 ntpdate[2623]: step time server 172.16.1.62 offset -28801.104993 sec

ntp,chrony時間服務部署