zoukankan      html  css  js  c++  java
  • oracle之 安装 11G RAC 报 NTP failed

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

    解决过程:
    -- 查看 /etc/sysconfig/ntpd 文件配置
    root@hbdw1:/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
    root@hbdw1:/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没过)

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

    root@hbdw1:/root$ll /etc/ntp.conf
    -rw-r--r-- 1 root root 1676 Sep 24 08:28 /etc/ntp.conf

    root@hbdw1:/root$scp /etc/ntp.conf root@136.142.55.2:/etc/

    -- 最后 重启 ntp 服务
    root@hbdw1:/root$service ntpd stop
    root@hbdw1:/root$service ntpd start

    -- 再次 check again , 通过。

  • 相关阅读:
    Sword 17
    Sword 16
    Sword 15
    Sword 14-II
    Sword 14-I
    Sword 13
    Sword 11
    Sword 10-II
    Sword 10
    【python+selenium】三种等待方式
  • 原文地址:https://www.cnblogs.com/andy6/p/7603490.html
Copyright © 2011-2022 走看看