服务器间时间同步

由于上海服务器时间不统一可能造成发布警告及其他问题,使用以下方案尝试解决该问题

一.时间服务器的设定

1.选定172.26.166.114作为时间服务器,对NTP配置文件/etc/ntp.conf设定如下

# Permit time synchronization with our time source, but do not

# permit the source to query or modify the service on this system.

restrict default kod nomodify notrap nopeer noquery

restrict -6 default kod nomodify notrap nopeer noquery

 

# Permit all access over the loopback interface.  This could

# be tightened as well, but to do so would effect some of

# the administrative functions.

restrict 127.0.0.1 

restrict -6 ::1

restrict 172.26.166.0 mask 255.255.255.0 nomodify 

# Hosts on local network are less restricted.

#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

…………

2.设定NPT服务重启动

service ntpd restart

3.设定NPT服务在系统引导时启动

chkconfig ntpd on    

二.客户端设定

1.在需同步的服务器上使用Crontab定时更新,目前定为1天更新一次

##################################################

#time syn

##################################################

* */24 * * * root /usr/sbin/ntpdate 172.26.176.214;/sbin/hwclock -w

 

2.设定系统启动时同步时间,在/etc/init.d/下新建脚本文件(sysServerDate)

#!/bin/ksh

# chkconfig: 345 63 37

# description: update date to 172.26.176.214

/usr/sbin/ntpdate 172.26.176.214;/sbin/hwclock -w

 

3.设定同步脚本在系统引导时启动

chmod 755 sysServerDate

chkconfig sysServerDate on

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值