Centos8使用chronyc来同步时间

Centos8使用chronyc来同步时间

centos8没有了ntpupdate指定,无法使用之前的脚本+cron的方式来执行时间同步任务,使用了chronyc来代替

安装

# 安装
sudo yum install -y chrony
# 启动
sudo  systemctl start chronyd
# 设置自启
sudo systemctl enable chronyd
# 编辑配置文件
sudo vim /etc/chrony.conf

注释掉pool 2.centos.pool.ntp.org.iburst

加上下面两行:

server cn.ntp.org.cn iburst
server ntp.aliyun.com iburst
重载配置文件
systemctl restart chronyd.service
chronyc  sources -v

查看状态

chronyc sources
评论区
头像