赞
踩
date 查看系统时间
date -s 2012-08-02 只修改系统的日期
date -s 10:08:00 修改时间不修改日期
date -s “2018-01-01 04:53:00” 同时修改日期和时间
先安装 ntp 服务:yum -y install ntp
ntp常用时间服务器:
NTP服务器(上海) :ntp.api.bz
中国国家授时中心:210.72.145.44
美国:time.nist.gov
复旦:ntp.fudan.edu.cn
微软公司授时主机(美国) :time.windows.com
台警大授时中心(台湾):asia.pool.ntp.org
ntpdate -u ntp.api.bz 从上海服务器同步时间,-u参数可以越过防火墙与主机同步,非必须
crontab -e 后加入以下文本
*/10 * * * * /usr/sbin/ntpdate ntp.api.bz 每10分钟定时执行ntpdate命令同步时间
注意一定要写ntpdate命令的全局路径 /usr/sbin/ntpdate,否则查看日志发现有报错:/bin/sh: ntpdate command not found.
tail -f /var/log/cron
查看日志
部分内容摘自 运维小当家 51CTO博客,原文链接:http://blog.51cto.com/solin/1889971
本文为个人记录所用,如有侵权/错误,恳请指出 (╹▽╹)…
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。