部署NTP服务器进行时间同步


一.环境准备  

xuegod63.cn                 服务端

       xuegod64.cn                 客户端

二.服务端配置:

1.    安装ntp 服务

[[email protected] ~]# yum install  -y ntp

2.    开启ntpd服务并设置开机启动

[[email protected] ~]# service ntpd  start

正在启动 ntpd:                                            [确定]

[[email protected] ~]# chkconfig ntpd on

3.    查看端口是否启动

[[email protected] ~]# netstat -anput| grep 123

udp       0      0 172.16.30.39:123            0.0.0.0:*                               2107/ntpd          

udp       0      0 127.0.0.1:123               0.0.0.0:*                               2107/ntpd          

udp       0      0 0.0.0.0:123                 0.0.0.0:*                               2107/ntpd          

udp       0      0fe80::5054:ff:fee4:1f53:123 :::*                                   2107/ntpd          

udp       0      0 ::1:123                     :::*                                   2107/ntpd          

      udp       0      0 :::123                      :::*                                    2107/ntpd   

4.    同步时间:

[[email protected] ~]# ntpdate0.centos.pool.ntp.org(因为开启了ntpd服务同步时间报错)

24 May 11:30:47 ntpdate[2116]: the NTP socketis in use, exiting

[[email protected] ~]# service ntpd stop

关闭 ntpd:                                               [确定]

[[email protected] ~]# ntpdate0.centos.pool.ntp.org

24 May 11:31:40 ntpdate[2128]: adjust timeserver 202.112.29.82 offset -0.018094 sec

5.    修改配置文件:

[[email protected] ~]# vim /etc/ntp.conf  

restrict 127.0.0.1

restrict -6 ::1

restrict 192.168.1.0 mask 255.255.255.0 #允许192.168.1.0网段进行访问

server 127.127.1.0                             #本地时钟地址

       fudge 127.127.1.0 stratum 10                   #本地127.127.1.0为第10层

6.    重启ntpd服务

[[email protected] ~]# /etc/init.d/ntpd restart

关闭 ntpd:                                               [失败]

正在启动ntpd:                                            [确定]

7.     测试:

测试之前,要检测是否防火墙、selinux 都关闭!!!

服务端:

[[email protected] ~]# date

2016年 05月 24日 星期二 15:54:55 CST

[[email protected] ~]# date -s "2016-05-2415:30"    #设置时间

2016年 05月 24日 星期二 15:30:00 CST

[[email protected] ~]# clock –w                                 #同时同步到硬件

[[email protected] ~]# date

2016年 05月 24日 星期二 15:30:14 CST

[[email protected] ~]# service ntpd restart

关闭 ntpd:                                                [确定]

正在启动 ntpd:                                            [确定]

[[email protected] ~]# date

2016年 05月 24日 星期二 15:30:29 CST

三.客户端测试:

[[email protected] ~]# ntpdate  172.16.30.39

24 May 15:30:37 ntpdate[15939]: step timeserver 172.16.30.39 offset -1504.826538 sec

[[email protected] ~]# date

Tue May 24 15:30:40 CST 2016

常见的错误:

25 Apr 15:30:17 ntpdate[11520]: noserver suitable for synchronization found

其实,这不是一个错误。而是由于每次重启NTP服务器之后大约要3-5分钟客户端才能与server建立正常的通讯连接。当此时用客户端连接服务端就会报这样的信息。一般等待几分钟就可以了。

时间: 2024-10-10 07:06:16

部署NTP服务器进行时间同步的相关文章

linux ntp 服务器,时间同步

周氏一族,整理技术文档,给下一代留点教程...... 公司服务器较多,各种服务分布式管理,所以时间的同步非常重要. 经过几番了解和思考之后,决定用这样的方式来控制时间同步 1.随便一台公网服务器server21,ntp 到 http://www.pool.ntp.org ,获得国际标准时间 2.内部形成一个局域网,全部所有机器,ntp到内网服务器 server21,获得同步 3.内网服务器,编写同步监控脚本,1小时执行一次,以确保时间同步无误. 服务器,centos 6.3  64bit 公网,

部署ntp服务器笔记与时区的介绍与修改

准备工作: server ip:10.1.1.119 client  ip :10.1.1.56 关闭selinux: vi /etc/selinux/config SELINUX=disabled 关闭iptables: service iptables stop chkconfig iptables off 一.安装NTP软件包: yum -y install ntp /*yum安装NTP服务*/ chkconfig --add ntpd /*添加NTP*/ chkconfig ntpd o

ntp服务器的搭建

第1章 NTP时间服务器 1.1 NTP简介 NTP(Network Time Protocol,网络时间协议)是用来使网络中的计算机时间同步的一种协议. NTP服务器利用NTP协议来提供时间同步服务. 1.2 环境准备 1.2.1主机规划表 主机名    服务器/客户    外网IP          内网IP ntp-s      Server       10.0.0.41        172.16.1.41 ntp-c      Client       10.0.0.31      

win2012物理机服务器的Hyper-v下建虚拟机win2012做NTP服务器

最近学校把高考监控摄像头及其设备管理工作交于我来管理,发现一个问题就是他的设备很多,但都需要时间准确,而且时间上要同步.以前管理员说他就是在考试前把所有设备时间都要逐一的去和北京时间去手动校准,太烦了.本人想如果让所有设备都要与国家授时中心服务器或者time.window.com去同步的话所有设备都要能上互联网才可以,但是所有设备都用的私有地址无法连接互联网,因此,必须要做个内部的NTP服务器才可以,于是本人就用我单位的私有云服务器建了一台win2012虚拟机来做NTP服务器,下面我把过程和大家

Linux学习随笔5——搭建ntp服务器

2015.8.30 ntp服务器 NTP服务器(Network Time Protocol),是用来做局域网服务器时间同步的,保证局域网内的服务器与时间服务器的一致,某些应用对实时性要求比较的应用必须统一时间 互联网上也存在很多时间服务器, pool.ntp.org(官方NTP时间服务器) ntp服务器需要开启123端口 (UDP), 查看Linux系统中的被打开的端口 :netstat -an 打开本地防火墙的123端口: vi /etc/sysconfig/iptables中 添加一条规则

ntp服务器简单部署

本文大纲一.简介二.环境说明及配置三.测试四.常见问题解决###############一.简介        NTP 服务器[Network Time Protocol(NTP)]是用来使计算机时间同步化的一种协议,它可以使计算机对其服务器或时钟源(如石英钟,GPS等等)做同步化,它可以提供高精 准度的时间校正(LAN上与标准间差小于1毫秒,WAN上几十毫秒),且可介由加密确认的方式来防止恶毒的协议攻击.1.特性        NTP提供准确时间,首先要有准确的时间来源,这一时间应该是国际标准

为嵌入式开发板客户端自己动手在虚拟机上搭建时间同步NTP服务器

网络时间协议NTP(Network Time Protocol)是用于互联网中时间同步的标准互联网协议.NTP的用途是把计算机的时间同步到某些时间标准.目前采用的时间标准是世界协调时 UTC(Universal Time Coordinated).NTP的主要开发者是美国特拉华大学的David L. Mills教授.NTP对于我们个人来说有什么用呢,简单的讲,当你的计算机时间不准确了,你可以接入到互联网,从网上同步一下时间,看多方便. 对于企业来说,当你有成百上千的计算机,都不能直接连接互联网,

Linux时间同步+国内常用的NTP服务器地址

当Linux服务需要时间戳的时候,时间同步就显得十分重要.这里介绍下,最近我使用的一个同步命令. ntpdate 我的虚拟机是CentOS,安装ntpdate yum install ntpdate 然后 选择上海交大的NTP服务器进行同步 ntpdate ntp.sjtu.edu.cn 国内常用的NTP地址 地址转自豆瓣(http://www.douban.com/note/171309770/) 210.72.145.44 (国家授时中心服务器IP地址) 133.100.11.8 日本 福冈

局域网部署ntp时间服务器

搭建ntp时间服务器 时间服务器配置 须切换到root用户,再进行操作 检查ntp是否安装 [[email protected] ~]# rpm -qa | grep ntp 如果没有安装,须安装 [[email protected] ~]# yum -y install ntp ntpdate 修改ntp配置文件 [[email protected] ~]# vim /etc/ntp.conf 修改内容如下 #授权172.16.1.0-172.16.1.255网段上的所有机器可以从这台机器上查