NTP时间服务器

Posted linux学习笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NTP时间服务器相关的知识,希望对你有一定的参考价值。

1. NTP简介

NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议。它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms。

NTP服务器就是利用NTP协议提供时间同步服务的。

2. NTP服务器安装

  1. # 系统自带ntp
  2. [[email protected] ~]# rpm -qa ntp
  3. ntp-4.2.6p5-5.el6.centos.x86_64
  4. # 如果没有就安装
  5. yum -y install ntp

3. 配置NTP服务

  1. [[email protected] ~]# vim /etc/ntp.conf
  2. # restrict default kod nomodify notrap nopeer noquery
  3. restrict default nomodify
  4. # nomodify客户端可以同步
  5. # 将默认时间同步源注释改用可用源
  6. # server 0.centos.pool.ntp.org iburst
  7. # server 1.centos.pool.ntp.org iburst
  8. # server 2.centos.pool.ntp.org iburst
  9. # server 3.centos.pool.ntp.org iburst
  10. server ntp1.aliyun.com
  11. server time.nist.gov

4. 启动NTP服务器

  1. # 如果计划任务有时间同步,先注释,两种用法会冲突。
  2. [[email protected] ~]# crontab -e
  3. # time sync by oldboy at 2010-2-1
  4. #*/5 * * * * /usr/sbin/ntpdate time.nist.gov >/dev/null 2>&1
  5. [[email protected] ~]# /etc/init.d/ntpd start
  6. Starting ntpd: [ OK ]
  7. [[email protected] ~]# ntpq -p
  8. remote refid st t when poll reach delay offset jitter
  9. ==============================================================================
  10. *ntp1.aliyun.com 10.137.38.86 2 u 22 64 1 525.885 -42.367 0.000
  11. [[email protected] ~]# ntpstat
  12. synchronised to NTP server (110.75.186.247) at stratum 3
  13. time correct to within 4257 ms
  14. polling server every 64 s
  15. [[email protected] ~]# ntpdate 10.0.0.9
  16. 7 Dec 18:43:07 ntpdate[26950]: the NTP socket is in use, exiting

5. 客户机时间同步

 

客户机要等几分钟再与新启动的ntp服务器进行时间同步,否则会提示no server suitable for synchronization found错误。

  1. [[email protected] ~]# ntpdate 10.0.0.9
  2. 7 Dec 18:40:16 ntpdate[1453]: step time server 10.0.0.9 offset 40.880807 sec
  3. # 将命令放入计划任务即可。

以上是关于NTP时间服务器的主要内容,如果未能解决你的问题,请参考以下文章

android 如何关闭NTP网络时间同步?

CentOS7之ntp服务搭建

NTP 服务器没有得到正确的日期 (ESP8266)

怎样把WINDOWS7设置成NTP时间服务器

如何在 C 语言 (Linux) 中将 NTP 时间转换为 Unix 纪元时间

Centos 7 Ntp 服务器的配置