1. 安装ntp软件
yum install -y ntp
2.创建软连接
# 删除之前得时间sudo rm -rf /etc/localtime;# 更新时区 sudo ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
3. 更新时间
# root 权限运行sudo ntpdate -u ntp.aliyun.com
4. 开机自启,更新时间
# 开机启动sudo systemctl start ntpd# enablesudo systemctl enable ntpd
5.结束