美文网首页
Linux时间同步

Linux时间同步

作者: Liang_JC | 来源:发表于2020-03-21 16:25 被阅读0次

服务器同步网络时间

#手动同步
[root@Centos7 ~]# date
Wed Mar 11 15:25:52 CST 2020
[root@Centos7 ~]# date -s "-1 month"    #时间改为1个月前
Tue Feb 11 15:26:30 CST 2020
[root@Centos7 ~]# date
Tue Feb 11 15:26:32 CST 2020
[root@Centos7 ~]# ntpdate ntp1.aliyun.com
11 Mar 15:28:26 ntpdate[7997]: step time server 120.25.115.20 offset 2505599.999247 sec
[root@Centos7 ~]# date
Wed Mar 11 15:28:39 CST 2020

#ntp自动同步网络时间,并开启同步服务(同步较慢,大概每隔10~15分钟同步一次)
#centos7客户端与服务端时间差太多的时候,会同步失败,服务会出错
#服务端
rpm -q ntp || yum install ntp -y
vim /etc/ntp.conf
    #restrict default nomodify notrap nopeer noquery        #提供服务必须注释
    server ntp1.aliyun.com iburst
systemctl restart ntpd      
#客户端
vim /etc/ntp.conf
    server 192.168.139.100 iburst
systemctl restart ntpd

#chrony自动同步网络时间,并开启同步服务(推荐使用)
#服务端
vim /etc/chrony.conf
    server ntp5.aliyum.com iburst
    allow 192.168.139.0/24
    local stratum 10            #远程服务端连接不上时,依然提供同步服务
systemctl restart chronyd
#客户端
vim /etc/chrony.conf
    server 192.168.139.100 iburst
systemctl restart chronyd
chronyc -n sources -v
#centos6客户端
vim /etc/ntp.conf
    server 192.168.139.100 iburst
service ntpd restart    
ntpq -p

相关文章

  • 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/oezpjhtx.html