1.yum安装NTP服务
yum -y install ntp
2. 启动ntp服务
systemctl start ntpd
3. 设置开机自启
systemctl enable ntpd
4. 修改启动参数,增加-g -x参数,允许ntp服务在系统时间误差较大时也能正常工作
vi /etc/sysconfig/ntpd
OPTIONS= "-g -x"
5. 读取当前时间
timedatectl
6. 设置时区为亚洲/上海
timedatectl set-timezone Asia/Shanghai
7. 开启NTP服务器同步
timedatectl set-ntp yes