linux 用NTP设定中国时间并同步
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 用NTP设定中国时间并同步相关的知识,希望对你有一定的参考价值。
1、NTP 设置为中国上海时间并同步
[[email protected] ~]yum install -y ntp [[email protected] ~]rm -rf /etc/localtime [[email protected] ~]ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime [[email protected] ~]ntpdate cn.pool.ntp.org [[email protected] ~]date
2、用crond添加计划任务:
在最后添加 “3 3 * * * /usr/sbin/ntpdate 0.asia.pool.ntp.org > /dev/null 2>&1 ”,最后重启服务。
[[email protected] ~]# crontab -e [[email protected] ~]# crontab -l
3 3 * * * /usr/sbin/ntpdate cn.pool.ntp.org > /dev/null 2>&1
。。。
[[email protected] ~]# service crond restart Stopping crond: [ OK ] Starting crond: [ OK ]
本文出自 “福州恒达电脑” 博客,请务必保留此出处http://fzhddn.blog.51cto.com/12650899/1917110
以上是关于linux 用NTP设定中国时间并同步的主要内容,如果未能解决你的问题,请参考以下文章