成长值: 258 签到天数: 4711 天 [LV.Master]伴坛终老
|
发表于 2015/7/18 16:50
|
显示全部楼层
|阅读模式
|Google Chrome 43.0.2357.134 |Windows 8.1
输入
- yum -y install ntp
- ntpdate ntp1.aliyun.com
复制代码
ntp服务器来自:https://help.aliyun.com/document_detail/92704.html
国外服务器也可以用cf提供的:
然后date查看时间是不是正常了
设置自动时间同步,每6小时同步一次
crontab -e
- 0 */6 * * * /usr/sbin/ntpdate ntp1.aliyun.com >> /root/time.log;/bin/date >> /root/time.log
- 1 */6 * * * /usr/sbin/ntpdate ntp2.aliyun.com >> /root/time.log;/bin/date >> /root/time.log
复制代码
查看执行日志,实时刷新
修改系统时区:http://bbs.itzmx.com/thread-8534-1-1.html
一些服务器可能封锁ntp,那么就用rdate
查看时间服务器的时间:
- rdate time-a.timefreq.bldrdoc.gov
复制代码
设置时间和时间服务器同步:
- rdate -s time-a.timefreq.bldrdoc.gov
复制代码
|
|