美文网首页Linux
【1.11】服务器安装 Linux 时间同步服务器

【1.11】服务器安装 Linux 时间同步服务器

作者: 王滕辉 | 来源:发表于2022-01-25 14:56 被阅读0次

    http://blog.51yip.com/server/1474.html

    https://www.jianshu.com/p/53bbebf84425

    https://www.jianshu.com/p/33586b597db6

    -- 查看时间
    date
    -- 修改时间
    date -s "2021-11-11 10:00:01"

    搭建时间服务器

    第一步关闭防火墙
    service iptables stop
    chkconfig iptables off
    service iptables status
    
    systemctl stop firewalld
    systemctl status firewalld
    
    关闭selinux
    setenforce 0
     vi /etc/selinux/config 
     # SELINUX= can take one of these three values:
        SELINUX=disabled
    
    第二步
    服务端 :ntp-server
    systemctl status ntpd
    vim  /etc/ntp.conf 
      server ntp.aliyun.com iburst          将本机时间与阿里云同步
      server 0.centos.pool.ntp.org iburst   
    
    date -s '1 year' +%F      将系统时间故意改错
    date
    systemctl start ntpd     启动ntp时间同步服务 
    systemctl status ntpd    查看ntp服务状态
    
    date         查看系统时间,已同步
    
    客户端:node1
    vi /etc/ntp.conf
      server 192.168.43.146 iburst   配置文件23行,指定ntp服务器ip地址
    
    date -s '1 year'   调整时间
    date
    service ntpd restart      重启服务
    ntpq -p
    date     同步完成
    ntpq -p
    chkconfig --list ntpd
    chkconfig ntpd on   将ntp设置为开机自启
    chkconfig --list ntpd
    
    

    CHRONY时间同步服务

    服务配置
    systemctl stop chronyd
    systemctl status chronyd
    vim /etc/chrony.conf
      server ntp.aliyun.com iburst         将本机时间与阿里云同步
    
    date -s '5 year'
    date
    systemctl start chronyd
    date   时间已同步,想比与ntp服务快很多
     ss -ultp |grep chronyd   查看监听端口,323
    vim /etc/chrony.conf
      allow 192.168.43.0/24   允许与本机同步的主机或网段ip
      local stratum 10  取消此行注释,则互联网断开时,仍为本地提供时间服务
    systemctl restart chronyd
    
    
    配置客户端
    vi /etc/ntp.conf 
    date
    date -s '2 year'
    date
    service ntpd start
    date
    
    chronyc sources -v  查看同步状态
    
    vi /etc/chrony.conf 
    date -s '20 year'
     systemctl start chronyd
     date
    chronyc sources -v  查看同步状态
    
    

    点波关注 系统搭建(docker)

    相关文章

      网友评论

        本文标题:【1.11】服务器安装 Linux 时间同步服务器

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