ntp时间服务器安装部署文档-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 2090574
  • 博文数量: 195
  • 博客积分: 4378
  • 博客等级: 上校
  • 技术积分: 4046
  • 用 户 组: 普通用户
  • 注册时间: 2007-09-09 11:37
个人简介

白天和黑夜只交替没交换无法想像对方的世界

文章分类

全部博文(195)

文章存档

2014年(3)

2013年(20)

2012年(18)

2011年(107)

2010年(17)

2009年(5)

2008年(20)

2007年(5)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: linux

2011-05-31 19:23:45

 

 

 

 

时间服务器安装部署文档

 

 

 

 

系统环境:centos5.4

文档版本:

1.0.1

更新时间:

2011-01-07

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

安装部署文档... 1

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

时间

修改人

版本号

修改说明

2011.01.04

kevin

1.0.0

建立文档

2011.01.07

kevin

1.0.1

更新目录,规范文档格式

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

本文档规范ntp时间服务器安装流程及安装内容,供运维人员在部署新的运营环境时参考使用。

 

所有的节点的时间必须同步。可以通过ntp服务来实现。如果网络中已经有时间服务器,那么所有节点可以都使用这个时间服务器。否则可以配置内网中一台服务器作为时间服务器。ntp占用的资源非常的少,因此可以在内网上建立一个ntp服务器。

 

g-ntpd-01作为ntp服务器

[root@g-ntpd-01 ~]# mv/etc/ntp.conf    /etc/ntp.conf_bak

[root@g-ntpd-01 ~]# vi /etc/ntp.conf

添加以下内容:

server 0.centos.pool.ntp.org

server 1.centos.pool.ntp.org

server 2.centos.pool.ntp.org

server 127.127.1.0  #local clock

fudge  127.127.1.0  stratum 10

driftfile /var/lib/ntp/drift

broadcastdelay  0.008

 

 

[root@g-ntpd-01 ~]# ps -ef|grep ntp

root     22113  4333  0 18:43 pts/2    00:00:00 grep ntp

 

服务:

[root@g-ntpd-01 ~]# /etc/init.d/ntpd start

starting ntpd:                                             [  ok  ]

[root@g-ntpd-01 ~]# ps -ef|grep ntp

ntp      22127     1  0 18:44 ?        00:00:00 ntpd -u ntp:ntp -p /var/run/ntpd.pid -g

root     22130  4333  0 18:44 pts/2    00:00:00 grep ntp

 

[root@g-ntpd-01 ~]# ntpq -p

     remote           refid      st t when poll reach   delay   offset  jitter

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

218.75.4.130     3 u   28   64  377    5.396  -467570   3.711

*61.153.197.226  66.220.9.122     2 u   31   64  377  138.291  -467570   1.439

221.7.129.79    192.43.244.18    2 u   20   64  377   73.794  -467570   3.176

 local(0)        .locl.          10 l   25   64  377    0.000    0.000   0.001

 

 

 

 

 

 

 

 

[root@g-ntpd-01 ~]# netstat -atnpu|grep ntp

udp 0 0 192.168.1.187:123       0.0.0.0:*                               3136/ntpd          

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

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

udp 0 0 fe80::20c:29ff:fe76:123  :::*                                  3136/ntpd          

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

udp  0      0 :::123         :::*                                    3136/ntpd

 

 

在客户端台机器上运行如下的命令,与ntpd服务端进行时间同步。

[root@g-ntpd-client-01 ~]# /usr/sbin/ntpdate 192.168.1.187

29 dec 17:30:03 ntpdate[2959]: adjust time server 192.168.1.187 offset 0.000061 sec

 

 

若不能出现上面的同步,可能退出root用户再登陆,或者切换一下用户,也有可能不能马上同步,需要一定的时间(一般时间为服务端ntpd服务启动五分钟后即可)

可以将这个命令作为一个周期性运行的命令。

[root@g-ntpd-client-01 ~]# crontab -l

*/5 * * * *  /usr/sbin/ntpdate  192.168.1.187  && /usr/sbin/hwclock --systohc

 

 

注意:将客户端和服务器端的这个参数修改成yes。同步成功以后,自动的更新bios.

 

[root@g-ntpd-client-01 ~]# vi /etc/sysconfig/ntpd

 

# drop root to id 'ntp:ntp' by default.

options="-u ntp:ntp -p /var/run/ntpd.pid"

 

# set to 'yes' to sync hw clock after successful ntpdate

#sync_hwclock=no

sync_hwclock=yes

 

# additional options for ntpdate

ntpdate_options=""

 

到此,时间服务器的服务端及客户端的配置就已经成功了。

 

测试没有问题后,即可交付,进行生产环境的安装及部署。

阅读(6673) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

2011-11-24 16:56:52

真的挺实用的

|
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图