局域网部署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网段上的所有机器可以从这台机器上查询和同步时间
restrict 172.16.1.0 mask 255.255.255.0 nomodify notrap
?
#注释掉互联网上的时间服务器(集群在局域网中,不使用其他互联网上的时间)
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
?
# 填写以下配置,使该NTP服务器在不联网的情况下,使用本服务器的时间作为同步时间
server 127.127.1.0
fudge 127.127.1.0 stratum 10

修改ntpd文件

[[email protected] ~]# vim /etc/sysconfig/ntpd
#增加内容如下(让硬件时间与系统时间一起同步)
SYNC_HWCLOCK=yes

启动ntpd服务

启动ntpd

[[email protected] ~]# systemctl start ntpd

检查ntpd服务状态

[[email protected] ~]# systemctl status ntpd

设置ntpd服务开机启动

[[email protected] ~]# systemctl enable ntpd

查看是否同步

ntpq用来监视ntpd操作,ntpq -p查询网络中的NTP服务器,同时显示客户端和每个服务器的关系

[[email protected] ~]# ntpq -p
?
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
?
*LOCAL(0)        .LOCL.          10 l   35   64  177    0.000    0.000   0.000

客户端配置

须切换到root用户,再进行操作

检查ntp是否安装

[[email protected] ~]# rpm -qa | grep ntp

如果没有安装,须安装

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

方式1:配置定时任务

配置10分钟与时间服务器同步一次

[[email protected] ~]# crontab -e

编写定时任务如下:

*/10 * * * * /usr/sbin/ntpdate hadoop01

修改任意机器时间

[[email protected] ~]# date -s "2017-9-11 11:11:11"

十分钟后查看机器是否与时间服务器同步

方式2:启动ntpd服务

修改ntpd文件

[[email protected] ~]# vim /etc/sysconfig/ntpd
#增加内容如下(让硬件时间与系统时间一起同步)
SYNC_HWCLOCK=yes

修改ntp配置文件

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

修改内容如下

# 注释掉其他上游时间服务器
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
?
# 配置上游时间服务器为本地的ntpd Server服务器
server 172.16.1.17
?
# 配置允许上游时间服务器主动修改本机的时间
restrict 172.16.1.17

启动ntpd

[[email protected] ~]# systemctl start ntpd

检查ntpd服务状态

[[email protected] ~]# systemctl status ntpd

设置ntpd服务开机启动

[[email protected] ~]# systemctl enable ntpd

查看是否同步

ntpq用来监视ntpd操作,ntpq -p查询网络中的NTP服务器,同时显示客户端和每个服务器的关系

[[email protected] ~]# ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
hadoop01 LOCAL(0) 11 u 53 64 1 0.709 3.156 0.000

原文地址:https://www.cnblogs.com/ElegantSmile/p/11995971.html

时间: 2024-11-02 23:29:09

局域网部署ntp时间服务器的相关文章

部署企业内部NTP时间服务器

部署企业内部NTP时间服务器,假设node0作为NTP时间服务器主节点,node1, node2都是ntp客户端从节点,内部网段10.10.75.0. 所有节点通过yum命令安装ntp,命令如下:yum install ntp . 修改node0节点的配置文件/etc/ntp.conf,内容如下:server 0.cn.pool.ntp.orgserver 0.asia.pool.ntp.orgserver 3.asia.pool.ntp.orgrestrict 0.cn.pool.ntp.or

Centos6系列搭建NTP时间服务器

NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议.它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms. NTP官方站点:http://www.ntp.org/ ,NTP服务基于C/S(Client/Server)架构,每台机器既可以是NTPserver,也可以为NTPclient. 在linux中有两种查看系统时间的方法: date        #查看系

开源软件包的安装及ntp时间服务器简析

linux 系统服务篇(-)一.NTP时间服务器 network time protocol    NTP服务器的使命:使局域网内服务器(或个人pc端)的时间保持一致.二.开源软件的使用步骤:    1.安装软件服务.        (1)源码方式安装            下载,解压源码(wegt 或 rz (我用CRT)tar xf)            分析安装平台  ./configure(一般是测试软件的安装环境,看缺少哪些必要的依赖安装包)            编译软件     

ntp 时间服务器

NTP全称为{(Network Time Protocol(NTP)},用于在互联网或局域网个PC或服务器之间同步时间,且可实现加密方式同步时间,在IDC或机房当中时间同步非常重要,但是又不能去互联网同步时间,因此在内网搭建一台自己的NTP Server则十分有必要: 1.安装服务: ntp:主服务程序 ntpdate:时间同步命令 2.编辑配置文件: /etc/ntp.conf restrict 127.0.0.1 restrict 192.168.10.0 mask 255.255.255.

ntp时间服务器价格解析

关键词:ntp时间服务器价格,时间服务器 ntp时间服务器的价格也关乎着用户的选择,那么怎样能够选择一款价格适中并且功能居多的ntp时间服务器呢.首选我们要了解ntp时间服务器的定义.功能.原理.这样才能选择合适的ntp时间服务器. 那么ntp时间服务器是什么呢,ntp时间服务器是利用NTP网络时间协议进行校时的时间服务器,它是同步计算机的协议.ntp服务器是以卫星信号为时间基准,输出NTP网络.串口.秒脉冲等时间信息给终端设备进行校时.ntp服务器一般是以ntp网络信号授时的,以UTC世界统一

NTP时间服务器

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

搭建内网NTP时间服务器

          搭建内网的NTP时间服务器 需求:搭建一台时间服务器,使得无外网的服务器可以同步时间. 一.环境 1. [[email protected] ~]# cat /etc/redhat-release 2. CentOS release 6.8 (Final) 3. [[email protected] ~]# hostname -I 4. 10.0.0.61 172.16.1.61 5. #外网10.0.0.61;内网172.16.1.61 二.安装ntp并检查是否安装成功 1

Centos 6.3 下实现ntp时间服务器

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

国内互联网可用时间服务器地址(NTP时间服务器地址)

老男孩老师在教学培训过程中经常发现曾经的时间服务器地址不可用了,很是尴尬,特找到了国内比较稳定的时间服务器地址,和博友分享如下: ntp1.aliyun.com ntp2.aliyun.com ntp3.aliyun.com ntp4.aliyun.com ntp5.aliyun.com ntp6.aliyun.com ntp7.aliyun.com 在Linux里使用的语法为: ntpdate ntp1.aliyun.com 写个for循环检测如下: [[email protected] ~]