oracle之 安装 11G RAC 报 NTP failed

 问题描述: 使用 NTP 同步集群节点时间,安装 11G RAC 报 NTP 过不去。

oracle之 安装 11G RAC 报 NTP failed

解决过程:
-- 查看 /etc/sysconfig/ntpd 文件配置
[email protected]:/root$cat /etc/sysconfig/ntpd
# Drop root to id 'ntp:ntp' by default.
OPTIONS="-u ntp:ntp -p /var/run/ntpd.pid -g"

-- 所有节点,文件 /etc/sysconfig/ntpd 添加 -x
[email protected]:/root$cat /etc/sysconfig/ntpd
# Drop root to id 'ntp:ntp' by default.
OPTIONS="-u ntp:ntp -p /var/run/ntpd.pid -g -x"

-- 添加 -x 之后, check again 。 (node1 过了, node 2没过)

oracle之 安装 11G RAC 报 NTP failed

-- 将节点1的 /etc/ntp.conf文件 scp 到节点2 , 注意权限

[email protected]:/root$ll /etc/ntp.conf
-rw-r--r-- 1 root root 1676 Sep 24 08:28 /etc/ntp.conf

[email protected]:/root$scp /etc/ntp.conf [email protected]:/etc/

-- 最后 重启 ntp 服务
[email protected]:/root$service ntpd stop
[email protected]:/root$service ntpd start

-- 再次 check again , 通过。