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