服务器端

1, 安装 NTP

#yum install ntp

2, 修改配置文件/etc/ntp.conf,在其中插入:

restrict 192.168.10.0 mask 255.255.255.0 nomodify notrap

用restrict控管权限

nomodify - 用户端不能更改ntp服务器的时间参数

noquery - 用户端不能使用ntpq,ntpc等命令来查询ntp服务器 notrap - 不提供trap远端登陆

3, 此时可以向192.168.10.0/24的机器提供时间服务了,开启ntp服务:

(1) #/etc/rc.d/init.d/ntp start // 启动ntp服务

(2) #chkconfig ntpd on // 让ntp服务开机启动

4, 检查NTP端口是否已经开启 客户端同步 (使用ntpd服务)

(1) 修改/etc/ntp.conf

Server 192.168.10.126 服务器端IP

(2) 使ntpd服务开启 #chkconfig ntpd on

(3) 启动客户端ntpd服务 /etc/init.d/ntpd start



两节点时间查看

ssh rac2 date;date

同步另一台

ntpdate rac1

[root@mail ~]# ntpdate rac1
16 Oct 14:35:14 ntpdate[32463]: the NTP socket is in use, exiting

如果报这个错,停止NTPD服务再执行ntpdate