NTP时间同步很重要,在HA集群中。
- 安装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