程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> 關於Oracle數據庫 >> Oracle PRKC-1002錯誤原因和解決方案

Oracle PRKC-1002錯誤原因和解決方案

編輯:關於Oracle數據庫

    小編在 VMware Server 1.0.8 中安裝 Oracle RAC 時, 碰到到了 PRKC-1002 錯誤:WARNING: Error while copying directory /u01/oracle/product/10.2.0/db_1 with exclude file list ‘null’ to nodes ‘rac2′. [PRKC-1002 : All the submitted commands did not execute successfully]

    苦搜細索,最後在 Oracle 技術支持頁面找到了問題的原因和解決方案:

    Cause:
    This is because the date on the local node is higher than the date on the remote node(s).

    Solution:
    To fix this, set the times of the nodes to be the same. You can do this with “ntpupdate ” to sync the dates.

    其實 PRKC-1002 錯誤關鍵是解決時間同步問題,盡管我在安裝 VMware-tools 之後,勾選 vmware-toolbox 的 Miscellaneous Options 選項,但 node1 的時間還是比 node2 的快十幾秒。參考了一下《大話Oracle RAC》這本書,決定選用 NTP 服務來使時間同步。 剛開始我是用 node1 來做 NTP 服務的,但做完後發現 node1 的時間還是比 node2 的快幾秒,為了保守起見, 我用 node2 來做 NTP 服務。

    在 node2 用 root 用記編輯 /etc/ntp.conf,加入下面這段

    ## add for rac
    server 127.127.1.0
    fudge 127.127.1.0 stratum 11
    driftfile /var/lib/ntp/drift
    broadcastdelay 0.008

    然後在 node1 用 root 用記編輯 /etc/ntp.conf,加入下面這段

    ## add for rac
    server 192.168.1.131 prefer
    driftfile /var/lib/ntp/drift
    broadcastdelay 0.008

    #注意是 127.127.1.0 而不是 127.0.0.1,還有就是 192.168.1.131 是節點一的IP地址

    然後在兩個節點執行下面的命令使NTP服務啟動

    # /etc/init.d/ntpd start

    若這樣還不可以,那就要把安裝數據庫的 node1 的時間調得比 node2 慢點。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved