zoukankan      html  css  js  c++  java
  • aix平台安装10.2.0.5的CRS时遇到的bug

    aix平台安装10.2.0.5的CRS时遇到的bug

    来源于:
    AIX: PRKC-1073 : Failed to Transfer Directory "/u01/app/crs/inventory" to Any of the Given Nodes (文档 ID 1314406.1)

    适用于:
    Oracle Server - Enterprise Edition - Version: 10.2.0.4 to 10.2.0.5 - Release: 10.2 to 10.2
    IBM AIX on POWER Systems (64-bit)

    症状:
    当在CRS10.2.0.1上打patchset 10.2.0.x时,下列错误信息会在installAction*.log出现:

    WARNING: Error while copying directory /u01/app/crs/inventory with exclude file list '/tmp/OraInstall2011-03-23_10-40-10AM/installExcludeFile.lst' to nodes 'racdb2'. [PRKC-1073 : Failed to transfer directory "/u01/app/crs/inventory" to any of the given nodes "racdb2 ". 
    
    Error on node racdb2:null]
    

    译者注:OUI的报错例如以下:

    As per SRVM traces, the following command failed:

    (cd /u01/crs/oracle/product/10.2.0/crs/inventory && /usr/bin/find ./* -depth -print | /bin/cpio -oacEignore)|/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 coredb2 "(cd /u01/crs/oracle/product/10.2.0/crs/inventory &&/bin/cpio -idmuc)"
    

    The error message:

    [Thread-96] [6:5:7:409] [StreamReader.run:65]  ERROR>cpio: 0511-007 Cannot create Templates/install/rootupgrade; errno is 13.


    原因:
    Write permission is missing on some files created by base release 10.2.0.1:
    <crs_home>/inventory/Templates/install/root*

    This issue is described in unpublished bug 8555018 which is duplicate of unpublished bug 6727474.

    This problem only applies to patchset 10.2.0.4 and 10.2.0.5 on AIX.


    解决方式:
    1.Install CRS 10.2.0.1
    2.Execute the following command on ALL remote nodes:
    $ chmod -R u+w <CRS_HOME>/inventory/Templates/*
    3.Apply patchset 10.2.0.4/10.2.0.5
    If you had patchset already installed, please manually transfer these files as following. Replace <CRS_HOME> and <node_name> with actual value.

    -- on all remote nodes
    $ chmod -R u+w <CRS_HOME>/inventory/Templates/*
    
    -- on local node
    
    $ (cd <CRS_HOME>/inventory && /usr/bin/find ./* -depth -print | /bin/cpio -oacEignore)|/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 <node_name> "(cd <CRS_HOME>/inventory &&/bin/cpio -idmuc)"
    
    for example:
    (cd /u01/crs/oracle/product/10.2.0/crs/inventory && /usr/bin/find ./* -depth -print | /bin/cpio -oacEignore)|/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 coredb2 "(cd /u01/crs/oracle/product/10.2.0/crs/inventory &&/bin/cpio -idmuc)"
    

  • 相关阅读:
    【bzoj4372】烁烁的游戏 动态点分治+线段树
    【bzoj3730】震波 动态点分治+线段树
    【bzoj3125】CITY 插头dp
    【bzoj2310】ParkII 插头dp
    【bzoj1187】[HNOI2007]神奇游乐园 插头dp
    【bzoj1814】Ural 1519 Formula 1 插头dp
    【loj2325】「清华集训 2017」小Y和恐怖的奴隶主 概率dp+倍增+矩阵乘法
    【bzoj3518】点组计数 欧拉函数(欧拉反演)
    【bzoj5099】[POI2018]Pionek 双指针法
    【bzoj4311】向量 线段树对时间分治+STL-vector维护凸包
  • 原文地址:https://www.cnblogs.com/wgwyanfs/p/7300356.html
Copyright © 2011-2022 走看看