1.1ntp的简介

1.1.1NTP简介

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

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

1.2ntp服务的安装

1.2.1# 系统自带ntp

[root@m01~]# rpm -qa ntp

ntp-4.2.6p5-5.el6.centos.x86_64

# 如果没有就安装

yum -yinstall ntp

 1.3配置ntp服务

[root@m01~]# vim /etc/ntp.conf

8 # restrict default kod nomodify notrap nopeernoquery

9 restrict default nomodify     注释第八行内容并在下面添加此行内容

# nomodify客户端可以同步

# 将默认时间同步源注释改用可用源

[root@m01~]# vim /etc/ntp.conf

22 # server 0.centos.pool.ntp.org iburst

23 # server 1.centos.pool.ntp.org iburst

24 # server 2.centos.pool.ntp.org iburst

25 # server 3.centos.pool.ntp.org iburst

26 server ntp1.aliyun.com

27 server time.nist.gov     注释22-25行内容并在下面添加此部分内容

1.4启动ntp服务器

# 如果计划任务有时间同步,先注释,两种用法会冲突。

[root@m01~]# crontab -e

# time sync by oldboy at 2010-2-1

#*/5 * * * * /usr/sbin/ntpdate time.nist.gov>/dev/null 2>&1

[root@m01~]# /etc/init.d/ntpd start      (如果之前启动过  需要restart重启)

Starting ntpd:          

                                  [  OK  ]

[root@m01~]# ntpq -p

    remote           refid      st t when poll reach   delay  offset  jitter

==============================================================================

*ntp1.aliyun.com 10.137.38.86     2 u  22   64    1 525.885  -42.367   0.000

[root@m01~]# ntpstat

synchronised to NTP server (110.75.186.247) atstratum 3

   timecorrect to within 4257 ms

   pollingserver every 64 s

[root@m01~]# ntpdate 10.0.0.61

 7 Dec18:43:07 ntpdate[26950]: the NTP socket is in use, exiting

1.5客户机时间的同步

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

[root@web~]# ntpdate10.0.0.61

 7 Dec18:40:16 ntpdate[1453]: step time server 10.0.0.61 offset 40.880807 sec

1.   #将命令放入计划任务即可。

3.在用date 询一下你的时间是否同步了