[关闭]
@tsing1226 2017-06-22T15:31:05.000000Z 字数 546 阅读 870

linux

linux下时间同步

标签: linux time


Linux配置自动时间同步

  1. ntpdate ntp1.aliyun.com
  1. vi /etc/crontab
  2. 添加如下内容:
  3. 0-59/10 * * * * /usr/sbin/ntpdate ntp1.aliyun.com

上述是10分钟进行一次时间同步操作。
时间同步要做好两方面的准备工作:

sudoer权限

由于更新命令需要root权限,故你需要在root用户下执行,也可以在普通用户下执行,但需要设置sudoer权限如下配置:

  1. vi /etc/sudoers
  2. 添加:
  3. username ALL=(ALL) NOPASSWD:/usr/sbin/ntpdate *,...
  4. 命令行运行:
  5. sudo /usr/sbin/ntpdate ntp1.aliyun.com

配置nameserver地址

  1. vi /etc/resolv.conf
  2. 添加如下:
  3. nameserver 114.114.114.144
  4. nameserver 8.8.8.8
  5. nameserver 223.5.5.5
  6. nameserver 223.6.6.6
  1. ntp1.aliyun.com

时间服务器参考网站:http://www.ntp.org.cn/

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注