Centos8系统时间不同步解决方案
Centos7
及以下的都是采用NTP
来解决时间同步问题,在Centos8
后工具被chrony
替代。
解决方案
yum install -y chrony
systemctl start chronyd # 启动程序
systemctl enable chronyd # 设为开机启动
编辑配置文件
vim /etc/chrony.conf
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
# pool 2.centos.pool.ntp.org iburst (这一行注释掉,增加以下两行)
server ntp.aliyun.com iburst
server cn.ntp.org.cn iburst
重新加载配置
systemctl restart chronyd.service # 重新加载配置
date # 再查看己同步为当前日期
THE END
二维码
打赏
文章目录
关闭
共有 0 条评论