ntp时间同步

NTP时间同步很重要,在HA集群中。

  1. 安装ntp
yum install -y ntp

2.修改/etc/ntp.conf

vim /etc/ntp.conf

server cn.pool.ntp.org iburst # 修改为这样,注释掉其余三个。也可以搭建自己的内网NTP

3.先同步下时间:

ntpdate cn.pool.ntp.org

4.重启ntp服务,以及查看状态

systemctl restart ntpd
systemctl status ntpd    

5.开机启动

echo "ntpdate cn.pool.ntp.org" >> /etc/rc.d/rc.local 
chmod +x /etc/rc.d/rc.local
    原文作者:廖马儿
    原文地址: https://www.jianshu.com/p/27bd06d5c7b1
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞