其他分享
首页 > 其他分享> > liunx 时间同步chronyd

liunx 时间同步chronyd

作者:互联网

chrony概述: 

  chrony是NTP(Network Time Protocol)网络时间协议,服务器时间同步的一种协议

chrony安装:

  server端:

    1.安装chrony

      yum install -y chrony

    2.修改配置文件

      vim /etc/chrony.conf

       
        注:红色方框内容是需要添加和修改的。

     3.启动chrony服务

       systemctl start chronyd

       systemctl enable chronyd 

 

 

  client端:

    1.安装chrony

      yum install chrony -y

    2.修改配置文件

      vim /etc/chrony.conf

        添加:server 192.168.1.X iburst

    3.启动chrony服务

      systemctl start chronyd

      systemctl enable chronyd

    4.查看时间同步状态

       chronyc sources -v

 

标签:同步,配置文件,chronyd,vim,chrony,systemctl,liunx,conf
来源: https://www.cnblogs.com/HpLearningPark/p/16616030.html