• <fieldset id="8imwq"><menu id="8imwq"></menu></fieldset>
  • <bdo id="8imwq"><input id="8imwq"></input></bdo>
    最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
    當前位置: 首頁 - 科技 - 知識百科 - 正文

    在RHEL5上安裝OracleRAC10g的幾個小錯誤處理

    來源:懂視網 責編:小采 時間:2020-11-09 12:04:21
    文檔

    在RHEL5上安裝OracleRAC10g的幾個小錯誤處理

    在RHEL5上安裝OracleRAC10g的幾個小錯誤處理:前陣子,在RHEL5或者OEL5上安裝Oracle Clusterware 10.2.0.1遇到了不少問題,其中的原因主要是因為Oracle RAC 10.2.0.1發布的時候 前陣子,在RHEL5或者OEL5上安裝Oracle Clusterware 10.2.0.1遇到了不少問題,其中的原因主要是因為Ora
    推薦度:
    導讀在RHEL5上安裝OracleRAC10g的幾個小錯誤處理:前陣子,在RHEL5或者OEL5上安裝Oracle Clusterware 10.2.0.1遇到了不少問題,其中的原因主要是因為Oracle RAC 10.2.0.1發布的時候 前陣子,在RHEL5或者OEL5上安裝Oracle Clusterware 10.2.0.1遇到了不少問題,其中的原因主要是因為Ora

    前陣子,在RHEL5或者OEL5上安裝Oracle Clusterware 10.2.0.1遇到了不少問題,其中的原因主要是因為Oracle RAC 10.2.0.1發布的時候

    前陣子,在RHEL5或者OEL5上安裝Oracle Clusterware 10.2.0.1遇到了不少問題,其中的原因主要是因為Oracle RAC 10.2.0.1發布的時候RHEL5還沒出來,,那時的RedHat才是RHEL4,在SUSE Linux SLES10上也有同樣的問題。

    問題出現剛開始安裝的時候和最后一個節點運行root.sh的時候。其中主要的問題是三個:

    Issue#1: To install 10gR2, you must first install the base release, which is 10.2.0.1. As these version of OS are newer, you should use the following command to invoke the installer:

    $ runInstaller -ignoreSysPrereqs // This will bypass the OS check //

    Issue#2: At end of root.sh on the last node vipca will fail to run with the following error:


    Oracle CRS stack installed and running under init(1M)
    Running vipca(silent) for configuring nodeapps
    /home/oracle/crs/oracle/product/10/crs/jdk/jre//bin/java: error while loading
    shared libraries: libpthread.so.0: cannot open shared object file:
    No such file or directory


    Issue#3: After working around Issue#2 above, vipca will fail to run with the following error if the VIP IP’s are in a non-routable range [10.x.x.x, 172.(16-31).x.x or 192.168.x.x]:

    # vipca
    Error 0(Native: listNetInterfaces:[3])
    [Error 0(Native: listNetInterfaces:[3])]

    原因是這樣的:
    These releases of the Linux kernel fix an old bug in the Linux threading that Oracle worked around using LD_ASSUME_KERNEL settings in both vipca and srvctl, this workaround is no longer valid on OEL5 or RHEL5 or SLES10 hence the failures.

    對于問題一,比較容易解決,只需要runInstaller的時候忽略檢查即可。
    問題二的解決方法是:

    To workaround Issue#2 above, edit vipca (in the CRS bin directory on all nodes) to undo the setting of LD_ASSUME_KERNEL. After the IF statement around line 120 add an unset command to ensure LD_ASSUME_KERNEL is not set as follows:


    if [ "$arch" = "i686" -o "$arch" = "ia" -o "$arch" = "x86_" ]
    then
    LD_ASSUME_KERNEL=2.4.19
    export LD_ASSUME_KERNEL
    fi
    unset LD_ASSUME_KERNEL <<<== Line to be added


    問題三的解決方法:

    To workaround issue#3 (vipca failing on non-routable VIP IP ranges, manually or during root.sh), if you still have the OUI window open, click OK and it will create the “oifcfg” information, then cluvfy will fail due to vipca not completed successfully, skip below in this note and run vipca manually then return to the installer and cluvfy will succeed. Otherwise you may configure the interfaces for RAC manually using the oifcfg command as root, like in the following example (from any node):

    /bin # ./oifcfg setif -global eth0/192.168.1.0:public
    /bin # ./oifcfg setif -global eth1/10.10.10.0:cluster_interconnect
    /bin # ./oifcfg getif
    eth0 192.168.1.0 global public
    eth1 10.10.10.0 global cluster_interconnect

    然后在手工運行vipca添加nodeapps resource即可。

    詳細的情況記錄在Oracle notes: 414163.1。

    linux

    聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

    文檔

    在RHEL5上安裝OracleRAC10g的幾個小錯誤處理

    在RHEL5上安裝OracleRAC10g的幾個小錯誤處理:前陣子,在RHEL5或者OEL5上安裝Oracle Clusterware 10.2.0.1遇到了不少問題,其中的原因主要是因為Oracle RAC 10.2.0.1發布的時候 前陣子,在RHEL5或者OEL5上安裝Oracle Clusterware 10.2.0.1遇到了不少問題,其中的原因主要是因為Ora
    推薦度:
    標簽: 安裝 錯誤 安裝的
    • 熱門焦點

    最新推薦

    猜你喜歡

    熱門推薦

    專題
    Top 主站蜘蛛池模板: 少妇人妻偷人精品视频| 国产亚洲婷婷香蕉久久精品| 国产成人vr精品a视频| 日韩三级精品| 国产精品婷婷午夜在线观看| 99re6这里有精品热视频| 亚洲人精品午夜射精日韩| 91精品国产91热久久久久福利| 经典国产乱子伦精品视频| 亚洲欧美日韩国产一区二区三区精品| 国产精品毛片无码| 欧美精品香蕉在线观看网| 国产精品免费观看调教网| 午夜精品乱人伦小说区| 男女男精品网站免费观看| 国产精品国产欧美综合一区| 亚洲精品欧美综合| 精品在线免费观看| 99国产精品久久久久久久成人热| 久久精品九九亚洲精品| 无码少妇精品一区二区免费动态| 无码人妻精品一区二区蜜桃AV| 精品无码一级毛片免费视频观看| 四虎国产精品免费观看| 国产一区二区三区久久精品| 91精品国产高清久久久久久io | 国产成人精品手机在线观看| 亚洲国产精品日韩| 欧美 日韩 精品 另类视频| 国语自产精品视频在线观看| 99久免费精品视频在线观看 | 国产精品成人A区在线观看| 无码精品黑人一区二区三区| 亚洲精品美女久久777777| 亚洲国产一成久久精品国产成人综合| 日韩精品一二三四区| 免费精品国自产拍在线播放| 欧美成人精品第一区二区三区| 国产久爱免费精品视频| 国产精品无码无卡无需播放器 | 久久精品国产亚洲AV无码偷窥 |