@tsing1226
2017-06-22T07:31:05.000000Z
字数 546
阅读 1105
linux
标签: linux time
ntpdate ntp1.aliyun.com
vi /etc/crontab添加如下内容:0-59/10 * * * * /usr/sbin/ntpdate ntp1.aliyun.com
上述是10分钟进行一次时间同步操作。
时间同步要做好两方面的准备工作:
由于更新命令需要root权限,故你需要在root用户下执行,也可以在普通用户下执行,但需要设置sudoer权限如下配置:
vi /etc/sudoers添加:username ALL=(ALL) NOPASSWD:/usr/sbin/ntpdate *,...命令行运行:sudo /usr/sbin/ntpdate ntp1.aliyun.com
vi /etc/resolv.conf添加如下:nameserver 114.114.114.144nameserver 8.8.8.8nameserver 223.5.5.5nameserver 223.6.6.6
ntp1.aliyun.com
时间服务器参考网站:http://www.ntp.org.cn/
