linux时间同步

2018-05-19  本文已影响0人  心疼你萌萌哒
================客户端和时间服务器关闭防火墙===44==45===
stop_firewalld(){
systemctl stop firewalld
sed -ri '/^SELINUX=/c SELINUX=disabled' /etc/sysconfig/selinux
setenforce 0
systemctl disable firewalld  
systemctl status firewalld
}
================NTP时间服务器服务器端======44==============
set_ntp(){
yum -y install ntp
sed -ri '/^server 1.centos.pool.ntp.org iburst/c server 127.127.1.0' /etc/ntp.conf
sed -ri '/^server 2.centos.pool.ntp.org iburst/c fudge 127.127.1.0 stratum 10' /etc/ntp.conf
sed -ri '/^server 3.centos.pool.ntp.org iburst/d' /etc/ntp.conf
rm -rf /etc/localtime
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
systemctl start ntpd
}

==============客户端跟时间服务器对时间==========45============
 yum install ntpdate -y
 ntpdate  时间服务器的IP地址  45
阿里云提供了7个NTP时间服务器也就是Internet时间同步服务器地址

ntp1.aliyun.com
ntp2.aliyun.com
ntp3.aliyun.com
ntp4.aliyun.com
ntp5.aliyun.com
ntp6.aliyun.com
ntp7.aliyun.com

时间同步法二:

查看方式 chronyc sources [10.0.0.20 10.0.0.21]
服务器:10.0.0.20
yum -y install chrony
sed -ri '/server 0/i server 10.0.0.20 iburst' /etc/chrony.conf
sed -ri '/server 3/d' /etc/chrony.conf
sed -ri '/#allow/a allow 10.0.0.0/24' /etc/chrony.conf
systemctl restart chronyd.service

客户端 10.0.0.21
yum -y install chrony
sed -ri '/server 0/i server 10.0.0.20 iburst' /etc/chrony.conf
systemctl restart chronyd.service

网址 反应时间 服务器地址

time-a.nist.gov             14.05秒  美国
time-b.nist.gov             13.45秒  美国
time-a.timefreq.bldrdoc.gov  6.34秒  美国
time-b.timefreq.bldrdoc.gov 10.89秒  美国
time-c.timefreq.bldrdoc.gov  3.64秒  美国
utcnist.colorado.edu         13.6秒  美国
ntp.tuxfamily.net            8.75秒  法国
time-nw.nist.gov             4.53秒  Microsoft公司
nist1.datum.com             14.11秒  美国
nist1-dc.glassey.com         0.25秒
nist1-ny.glassey.com         1.31秒
nist1-sj.glassey.com        13.51秒
nist1.aol-ca.truetime.com   13.53秒  美国
nist1.aol-va.truetime.com    3.61秒  美国
ntp2.belbone.be             13.63秒  比利时
ntp1.belbone.be                      比利时
ntp.belbone.be                       比利时
ntp.incaf.net                0.13秒
ntp.doubleukay.com           2.86秒  香港特别行政区
ntp.cyber-fleet.net          9.39秒
ntp0.coreng.com.au           0.86秒  澳大利亚
ntp0.cs.mu.OZ.AU                     澳大利亚墨尔本
ntp1.cs.mu.OZ.AU            13.57秒  澳大利亚墨尔本
clock.stdtime.gov.tw         1.29秒  台湾省台北市
time.stdtime.gov.tw          2.05秒  台湾省台北市 
ntp3.jst.mfeed.ad.jp                 日本
ntp2.jst.mfeed.ad.jp                 日本
ntp1.jst.mfeed.ad.jp                 日本
stdtime.gov.hk               1.48秒  香港特别行政区
210.72.145.44                        中国
上一篇 下一篇

猜你喜欢

热点阅读