CentOS8 系统时间同步设置

发布时间:2024-05-09浏览量:0

1、CentOS8使用chrony作为时间同步工具


2、安装chrony


sudo yum install -y chrony

1

3、启动和设置配置文件


sudo systemctl start chronyd

1

//设置为系统自动启动


sudo systemctl enable chronyd

1

//编辑配置文件


sudo vim /etc/chrony.conf

1

按照如下设置:注释掉 pool 2.centos.pool.ntp.org.iburst


然后增加如下两行:


server ntp.aliyun.com iburst

server cn.ntp.org.cn iburst

1

2


pool ntp5.aliyun.com iburst

1



4、重新加载配置文件


systemctl restart chronyd.service


chronyc sources -v

最后再来一句

timedatectl set-timezone Asia/Shanghai