美文网首页
linux时间同步

linux时间同步

作者: 心疼你萌萌哒 | 来源:发表于2018-05-19 09:14 被阅读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                        中国

相关文章

  • linux ntp 同步时间

    文章来自:linux ntp 同步时间,linux ntp时间同步的两种方法[https://blog.csdn....

  • linux时间同步

    时间同步法二: 网址 反应时间 服务器地址

  • linux时间同步

    安装ntp 同步时间 写入硬件

  • linux 同步时间

    CentOS系统时间同步的步骤如下: 1、下载ntpdate注:有些版本是没有自带ntpdate,因此需要下载 y...

  • Linux时间同步

    转载自(http://www.cnblogs.com/zhi-leaf/p/6281549.html)1、安装nt...

  • 同步Linux时间

    有时候, 因为某些原因, 我们设置错了时区或时间, 或者系统当前时间不正确的时候, 我们该如何做? 修改系统时区(...

  • Linux时间同步

    原创作品,允许转载,转载时请务必以超链接形式标明原始出处、作者信息和本声明,否则后果自负。如果你觉得这篇文章对你有...

  • Linux 时间同步

    Linux 服务器可以通过命令来进行时间同步。 一、ntpdate 同步网络时间 NTP 常用服务器: 经测试中国...

  • Linux时间同步

    查看时间date 简单设置时间date -s 00:00:01 查看ntp的安装包:yum list|grep n...

  • Linux时间同步

    发现科学上网不能用,看一下系统时间错了,更新了下时间就能上网了。

网友评论

      本文标题:linux时间同步

      本文链接:https://www.haomeiwen.com/subject/ujrodftx.html