linux ntp时间同步配置

第1章 ntp时间服务器搭建

1.1ntp简介

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

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

1.2NTP服务器安装

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

1.3 配置ntp时间服务器

 

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

# restrict default kod nomodifynotrap nopeer noquery

restrict default nomodify

# nomodify客户端可以同步

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

# server 0.centos.pool.ntp.orgiburst

# server 1.centos.pool.ntp.orgiburst

# server 2.centos.pool.ntp.orgiburst

# server 3.centos.pool.ntp.orgiburst

server ntp1.aliyun.com

server time.nist.gov

启动NTP服务器

[[email protected] ~]# /etc/init.d/ntpdstart

Starting ntpd:                                            [  OK  ]

[[email protected] ~]# 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

[[email protected] ~]# ntpstat

synchronised to NTP server(110.75.186.247) at stratum 3

time correct to within 4257 ms

polling server every 64 s

[[email protected] ~]# ntpdate10.0.0.9

7 Dec 18:43:07 ntpdate[26950]: the NTP socketis in use, exiting

1.4客户机时间同步

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

[[email protected] ~]# ntpdate 10.0.0.9

7 Dec 18:40:16 ntpdate[1453]: step time server10.0.0.9 offset 40.880807 sec

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

时间: 2024-10-04 20:26:29

linux ntp时间同步配置的相关文章

linux ntp时间同步

一.搭建时间同步服务器1.编译安装ntp serverrpm -qa | grep ntp若没有找到,则说明没有安装ntp包,从光盘上找到ntp包,使用rpm -Uvh ntp***.rpm进行安装2.修改ntp.conf配置文件vi /etc/ntp.conf①.第一种配置:允许任何IP的客户机都可以进行时间同步将“restrict default nomodify notrap noquery”这行修改成:restrict default nomodify notrap配置文件示例:/etc

linux ntp 时间同步

一.时间同步服务器可以将数据库服务器作为同步服务器ntp.conf 保持不变 //启动服务service ntpd start //设置ntpd服务自启动chkconfig ntpd on//检查chkconfig --list ntpd 二.客户端配置1. 修改ntp.conf的server配置项.注释掉所有预定义的server时间同步服务器地址配置,如#server 0.rhel.pool.ntp.org添加server 192.168.20.119 2.停掉 ntpd 服务:service

内网ntp时间同步配置

选择局域网中的一台机器作为ntp服务器,在ntp server上安装并启动ntpd客户端上要关闭ntpd,安装ntpdateCentOS7上这两个软件都是自带的,只需根据需要打开或者关闭.注意客户端机器的ntpd必须关闭 修改ntp服务器上的/etc/ntp.conf,加上以下的配置: server 127.127.1.0 #local clock fudge 127.127.1.0 stratum 5 后面哪个数字在0-15之间都可以,这样就将这台机器的本地时间作为ntp服务提供给客户端 重启

Linux NTP时间同步服务

NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议.它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms. 安装 直接可以使用yum安装, yum install -y ntp yum install -y ntpdate(客户端) 参数配置 driftfile:记录时间差异 因为预设的NTP Server本身的时间是依据BIOS的晶片震荡周期频率来计算的,但

Linux NTP服务配置

一.NTP对时原理 NTP同步的方向是从stratum值较小的节点向较大的节点传播,如果某个NTP客户端接收到stratum比自己还要大,那么NTP客户端认为自己的时间比接受到的时间更为精确,不会进行时间的更新. 对于大部分NTP软件系统来说,服务启动后,stratum值初始是0,一旦NTP服务获取到了时间,NTP层次就设置为上级服务器stratum+1.对于具备卫星时钟.原子钟的专业NTP设备,一般stratum值初始是1. NTPD启动后,stratum值初始是0,此时NTPD接收到NTP请

【NetApp】配置NetApp控制器与Linux NTP服务器同步

Linux NTP服务器端配置: 1)设置/etc/ntp.conf配置文件 [[email protected] etc]# vi /etc/ntp.conf # For more information about this file, see the man pages# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5). driftfile /var/lib/ntp/drift # Pe

关于linux下ntp时间同步服务的安装与配置

1.安装ntp服务,要使用时间同步.那么服务端与客户端都需要使用如下命令安装NTP软件包 [[email protected]5201351 ~]# yum install ntp -y 2.如果只是作为客户端的话,配置则可以非常简单,编辑/etc/ntp.conf文件,注释掉默认的如下默认的4行       再加上我们的时间同步服务端的IP地址或者域名即可,其中prefer选项表示该服务器优先 #server 0.centos.pool.ntp.org iburst #server 1.cen

Linux NTP Server 安装配置客户端时间同步

NTP 概述: NTP 是网络时间协议(Network Time Protocol),供客户端同步时间使用.采用类似分级架构来处理时间的同步化,使用类似一般Server / Client的主从架构.端口: UDP 123 国内常用NTP服务器信息: ntp.sjtu.edu.cn 202.120.2.101 (上海交通大学网络中心NTP服务器地址)s1a.time.edu.cn 北京邮电大学s1b.time.edu.cn 清华大学s1c.time.edu.cn 北京大学s1d.time.edu.

Linux杂记-配置ntp时间同步服务

概念 NTP是网络时间协议(Network Time Protocol),它是用来同步网络中各个计算机的时间的协议. 安装 目标 现集群有三台主机,分别为centos7-1,centos7-2,centos7-3. centos7-1作为master,同步硬件时间. centos7-2,centos7-3同步centos7-1的时间. 安装ntp 三台主机分别安装ntp,并设置一个初始时间. yum -y install ntp date -s '2018-05-04 00:00:00' 修改/