安装过程中报错:

日志文件信息:

Executing command: /app/R1220/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6./bin/java -cp /app/erpapp/VIS/fs2/inst/apps/VIS_ebstest/temp/ASInstallHome/fnd/../j11067592_fnd.zip:/app/
erpapp/VIS/fs2/inst/apps/VIS_ebstest/temp/ASInstallHome/fnd/java/3rdparty/stdalone/xmlparserv2.zip -Doracle.apps.fnd.txk.env_home=/app/erpapp/VIS/fs2/EBSapps/appl/admin/VIS_ebst
est/ -Doracle.apps.fnd.txk.runtime.config=/app/erpapp/VIS/fs2/inst/apps/VIS_ebstest/temp/xmldocs/instWeb.xml oracle.apps.fnd.txk.config.InstallService Fatal Error: TXK Install Service oracle.apps.fnd.txk.config.ProcessStateException: OUI process failed : Exit= See log for details. CMD= /app/R1220/TechInstallMedia/ohs11117/Disk1/runInstaller -waitForCompletio
n -ignoreSysPrereqs -force -silent -responseFile /app/erpapp/VIS/fs2/inst/apps/VIS_ebstest/temp/cfgHome/response/APPS_OHS_HOME/txkOHS_11117.rsp at oracle.apps.fnd.txk.config.OUIPatchActionNode.processState(OUIPatchActionNode.java:) at oracle.apps.fnd.txk.config.PatchActionNode.processState(PatchActionNode.java:) at oracle.apps.fnd.txk.config.PatchNode.processState(PatchNode.java:) at oracle.apps.fnd.txk.config.PatchesNode.processState(PatchesNode.java:) at oracle.apps.fnd.txk.config.InstallNode.processState(InstallNode.java:) at oracle.apps.fnd.txk.config.TXKTopology.traverse(TXKTopology.java:) at oracle.apps.fnd.txk.config.InstallService.doInvoke(InstallService.java:) at oracle.apps.fnd.txk.config.InstallService.invoke(InstallService.java:) at oracle.apps.fnd.txk.config.InstallService.main(InstallService.java:) Cannot install Web Tier Utilities RW-: Error: - script has returned an error:
RW-: Error code received when running external process. Check log file for details.
Running APPL_TOP Install Driver for VIS instance

参考Oracle Support Services中的文档:

12.2 install fails on: Fatal Error: TXK Install Service (Doc ID 1590656.1)

Cause
There was still some files or inventory references left from a previous installation causing this install to fail. This is confirmed in uploaded log filet RDBMS $ORACLE_HOME/temp/$CONTEXT_NAME/logs/oracle.apps.fnd.txk.install0.log which contains the errors: CAUSE: The chosen installation conflicted with software already installed in the given Oracle home.
ACTION: Install into a different Oracle home.

查看日志过程:

$ cd $ORACLE_HOME/temp/$CONTEXT_NAME/logs
$ grep 'CAUSE' oracle.apps.fnd.txk.install0.log
CAUSE: The selected Oracle home contained directories or files.
CAUSE: Some of the optional prerequisites are not met. See logs for details. /app/oracle/oraInventory/logs/installActions2015--25_11--25AM.log
CAUSE: Some of the optional prerequisites are not met. See logs for details. /app/oracle/oraInventory/logs/installActions2015--25_11--35AM.log 继续查看/app/oracle/oraInventory/logs/installActions2015--25_11--35AM.log发现以下内容:
...
WARNING: [WARNING] [INS-] The selected Oracle home contains directories or files.
CAUSE: The selected Oracle home contained directories or files.
ACTION: To start with an empty Oracle home, either remove its contents or choose another location.
INFO: Advice is CONTINUE
...

解决方案:

清空$ORACLE_HOME目录下的所有内容,然后重新安装。

RW-50004 While Running adrunfmw during EBS 12.2 Installation的更多相关文章

  1. Oracle EBS 12.2.6 on VirtualBox

    Back in May, Oracle announced the general availability of Oracle VM Virtual Appliance for E-Business ...

  2. Workflow Builder 2.6.3 Certified on Windows 10 for EBS 12.x

    By Steven Chan - EBS-Oracle on May 17, 2016 Workflow Builder 2.6.3 is now certified on Windows 10 de ...

  3. ebs 12.1.1 单节点多用户安装

    本次测试环境:操作系统 oracle linux 6.9   oracle ebs 12.1.1   192.168.20.210  erpapp1.hthorizon.com erpapp1 yum ...

  4. Symmetrical Network Acceleration with EBS 12

    Andy Tremayne, my esteemed colleague and fellow blogger, has published a new whitepaper that discuss ...

  5. JDeveloper 10g Certified on Windows 10 for EBS 12.1

    JDeveloper 10g is now certified for Windows 10 desktops for Oracle E-Business Suite 12.1.  See: Reco ...

  6. Forms and Reports Developer 10g Certified on Windows 10 for EBS 12.x

    Forms Developer 10g and Reports Developer 10g are now certified on Windows 10 desktops for E-Busines ...

  7. Microsoft Edge Certified with EBS 12.1 and 12.2

    I am very pleased to announce that Microsoft Edge is certified as a new browser for Oracle E-Busines ...

  8. oracle ebs 12.20 安装成功其过程失败日记及总结(1)

    由于公司业务须要,须要安装oracle ebs进行 form 开发,所以就開始了痛苦oracle ebs安装之过程.刚開始是在vm中win2003 server 中安装ebs,,不知是我自已的水平太差 ...

  9. ebs 12.1.1升级到12.1.3

    升级过程参考 Oracle电子商务套件版本12.1.3自述文件 (文档 ID 1534411.1) 应用启动到维护模式 adadmin 打以下patch 9239089  9239090  92390 ...

随机推荐

  1. ACM: HDU 1874 畅通工程续-Dijkstra算法

    HDU 1874 畅通工程续 Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Desc ...

  2. CF 346B. Lucky Common Subsequence(DP+KMP)

    这题确实很棒..又是无想法..其实是AC自动机+DP的感觉,但是只有一个串,用kmp就行了. dp[i][j][k],k代表前缀为virus[k]的状态,len表示其他所有状态串,处理出Ac[len] ...

  3. 如何将一个对象存到网页中并在js中使用

    需求:希望在js中使用Controller传过来的对象,特别是对象里存有list的数据. 不希望循环使用隐藏域. 解决办法:在View中使用Json.Net序列化: @{ string jsonStr ...

  4. iOS 上线被拒收集

    根据上线被拒的原因 自己 也在慢慢总结  希望对各位有所帮助 1)QQ 微信 等第三方平台 必须要做是否安装应用的检测

  5. JS 弹出模态窗口解决方案

    最近在项目中使用弹出模态窗口,功能要求: (1)模态窗口选择项目 (2)支持选择返回事件处理 在IE中有showModalDialog 方法,可以很好的解决该问题,但是在Chrome中和FF中就有问题 ...

  6. Hadoop.2.x_WordCount本地测试示例

    代码如下, 后备参考: package com.bigdata.hadoop.hdfs; import java.io.IOException; import org.apache.hadoop.co ...

  7. 使用explain查看mysql查询执行计划

    explain语句: 字段解释: type:     all(全表扫描)     ref() possible_keys:     预测使用什么列做为索引 key:     实际使用的key     ...

  8. unity3d插件Daikon Forge GUI 中文教程7-高级控件slider的使用

    3.6.slider滑块              我们说说前面这个图片.对象 Appearance: Atlas 图集: Track 滑块的轨道图片 Back color滑块的轨道图片的主颜色. O ...

  9. OSI七层&TCP&IP协议

    OSI七层: OSI七层与ICP/IP概念层的对应: ICP/IP概念层上的网络设备: IP(Internet Protocol网际协议):计算机之间的通信 IP(网络协议)位于网络层,作用是把各种数 ...

  10. centos下安装php后连接不上mysql

    安装完php后需要安装php的扩展比如: 安装php的扩展yum install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xm ...