码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-09-08 16:54:42      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:mod   def   node   server   str   服务器   ntp服务   配置文件   ntp.conf   

部署企业内部NTP时间服务器,假设node0作为NTP时间服务器主节点,node1, node2都是ntp客户端从节点,内部网段10.10.75.0。

  1. 所有节点通过yum命令安装ntp,命令如下:yum install ntp 。

  2. 修改node0节点的配置文件/etc/ntp.conf,
    内容如下:
    server 0.cn.pool.ntp.org
    server 0.asia.pool.ntp.org
    server 3.asia.pool.ntp.org
    restrict 0.cn.pool.ntp.org nomodify notrap noquery
    restrict 0.asia.pool.ntp.org nomodify notrap noquery
    restrict 3.asia.pool.ntp.org nomodify notrap noquery
    #10.10.75.0网段的服务器都可以使用NTP服务器来同步时间。
    restrict default ignore
    restrict 10.10.75.0 mask 255.255.255.0 notrap nomodify
    server 127.127.1.0 prefer
    fudge 127.127.1.0 stratum 10

3.在node1、node2节点上,编辑/etc/ntp.conf
添加一句server NTP时间同步服务器IP地址 prefer

4.所有节点启动 ntp服务,把ntp服务设置为开机自启动,命令如下
service ntpd start
chkconfig ntpd on

  1. 从节点先使用ntpdate手动同步一下时间命令如下:ntpdate -u 主节点IP地址

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

标签:mod   def   node   server   str   服务器   ntp服务   配置文件   ntp.conf   

原文地址:http://blog.51cto.com/lihuansong/2172270

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!