星光熠熠 2018-01-23
安装 ntpdate , yum -y install ntpdate
#ntpdate cn.pool.ntp.org
删除本地时间并设置时区为上海
rm -rf /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
自动同步时间
#添加下面一段
#表示每10分钟同步一次
#crontab -e
*/10 * * * * /usr/sbin/ntpdate -u cn.pool.ntp.org >/dev/null 2>&1
#systemctl restart crond