ntp 服务的搭建

 我们在创建rac集群的时候,可以关闭ntp服务,但是建议最好是建立ntp服务,是两个节点的时间同步,下面我们来看看ntp服务是如何搭建的:


1、安装软件

yum install ntp*

2、停止服务

service ntpd stop

3、修改ntp服务器的配置:

修改配置文件 /etc/ntp.conf

#设置ntp服务器依据谁的时间校准

server 210.72.145.44 prefer (中国国家授时中心服务器地址 prefer表示优先 注意把默认的server更改成这样)    

server 127.127.1.0 (本地时间)    

#设置允许那些服务器来访问ntp服务

restrict 10.10.6.54 mask 255.255.255.0 nomodify (允许10..85.10.* 的IP 使用该时间服务器)    

restrict 0.0.0.0 mask 0.0.0.0 nomodify notrap noquery notrust (屏蔽其他IP过来更新时间)    

#注释下面的两句话,并且加入下面一行
restrict default kod nomodify 
#restrict default kod nomodify notrap nopeer noquery
#restrict -6 default kod nomodify notrap nopeer noquery

其他的保持默认不动。

重启ntp服务 service ntpd restart; 

 crontab -e    加入一行:    

*/1 * * * *  ntpdate 210.72.145.44     

210.72.145.44 为中国国家授时中心服务器地址,这样该机每隔1分重就可以与国家授时中心进行同步了。 



相关配置参数说明
#  restrict权限控制语法为:
#  restrict IP mask netmask_IP parameter
#  其中 IP 可以是客户端的ip地址,也可以是 default ,default 就类似 0.0.0.0 咯!
#  至于 paramter 则有:
#   ignore :关闭所有的 NTP 联机服务
#   nomodify:表示 Client 端不能更改 Server 端的时间参数,不过,
#        Client 端仍然可以透过 Server 端来进行网络校时。
#   notrust :该 Client 除非通过认证,否则该 Client 来源将被视为不信任网域
#   noquery :不提供 Client 端的时间查询
#  如果 paramter 完全没有设定,那就表示该 IP (或网域) 『没有任何限制!』

#  设定上层主机主要以 server这个参数来设定,语法为:
#  server [IP|FQDN] [prefer]
#  Server 后面接的就是我们上层 Time Server 啰!而如果 Server 参数
#  后面加上 perfer 的话,那表示我们的 NTP 主机主要以该部主机来作为
#  时间校正的对应。另外,为了解决更新时间封包的传送延迟动作,



4、修改客户端的配置

vi  /etc/ntp.conf

#指定ntp服务的地址

server 10.10.6.54



重启客户端的ntp服务  service ntpd restart; 

 hwclock –w

要定时自动同步,可以把命令及执行时间和周期等加入crontab



并且:crontab  -e
加入
0-59/10 * * * * /usr/sbin/ntpdate ip(ntp服务的ip地址)
表示每隔10分钟同步一次时间

客户端配置服务 好后,可能不是立刻就能时间同步,需要经过半个小时候,这个时间就会自动同步


如果在经过半个小时候,还没有自动同步,那么可以通过下面两个命令来查看排错;


5、排错

 ntpq -c associations

  ntpq -p
[root@rac1 ntp]# ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
+114.80.81.13    216.218.192.202  2 u   63   64  377  142.827    8.429   3.245
+tock.stdtime.go 59.124.196.86    2 u   58   64  377  109.621   70.157   5.744
*118.219.234.251 121.182.147.191  2 u   63   64  377   59.405   89.436  22.051
 LOCAL(0)        .LOCL.          10 l    1   64  377    0.000    0.000   0.001
其中,
remote - 本机和上层ntp的ip或主机名,“+”表示优先,“*”表示次优先
refid - 参考上一层ntp主机地址
st - stratum阶层
when - 多少秒前曾经同步过时间
poll - 下次更新在多少秒后
reach - 已经向上层ntp服务器要求更新的次数
delay - 网络延迟
offset - 时间补偿
jitter -  系统 时间与bios时间差


你可能感兴趣的:(ntp 服务的搭建)