|
安装ntpdate
yum install ntpdate
删除自带的时间文件
rm -rf /etc/localtime ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
修改定时任务
crontab -e
每天5点同步一次时间
0 5 * * * /usr/sbin/ntpdate -u ntp.api.bz
开机自动同步 1.vi /etc/crontab
0 5 * * * /usr/sbin/ntpdate -u ntp.api.bz
2.直接在/etc/rc.d/rc.local里敲上ntpdate time.windows.com,开机实现自动同步 |