应用启动正常,但无法进入登录页面:

The webpage cannot be found HTTP 404 ... No known changes had been made and the Middle-Tier Services appear to start without problems.

The error_log shows errors like: ... File does not exist: <PORTAL_TOP>/OA_HTML/AppsLogin

No obvious errors were found in the other log files apart from... $LOG_HOME/ora/10.1.3/j2ee/oacore/oacore_default_group_1/log.xml which reports: Internal error raised tyring to instantiate web-application: html defined in web site OC4J 10g (10.1.3) Default Web Site.Error compiling :$COMMON_TOP/webapps/oacoreml: Error instantiating compiler: Web service artifact generation failed:java.lang.InstantiationException: IO Error reading WEB-INFdlrp_service.wsdl in $COMMON_TOP/webapps/oacoreml: $ORA_CONFIG_HOME/ora/10.1.3/j2ee/oacore/application-deployments/oacoremlrver-wsdlrp_service.wsdl (Permission denied)... CAUSEThis problem occurrs because the file 'wsrp_service.wsdl' is owned by the 'root' User, but the Middle-Tier Services are started by the APPLMGR User.

A similar issue is reported in unpublished Bug 8240458 which describes the same issue with AppsLogin not working and error_log reporting 'File does not exist' for AppsLogin with the path pointing to PORTAL_TOP instead of OA_HTML. This bug identifies the problem as being caused by the file wsrp_service.wsdl being owned by root instead of the applmgr as expected. This results in the Permission Denied errors when Apache starts and causes the eventual login issues.

This may happen if, at some previous time, the Middle-Tier Services have been accidentally (re)started by the 'root' User instead of the APPLMGR User.SOLUTIONTo get the issue resolved, please implement following steps :Ensure that the file $ORA_CONFIG_HOME/10.1.3/j2ee/oacore/application-deployments/oacoremlrver-wsdlrp_service.wsdl is owned by the APPLMGR User:

1. Open a new shell and source the APPS Environment.

2. Execute following command to see the access rights on the file: ls -l $ORA_CONFIG_HOME/10.1.3/j2ee/oacore/application-deployments/oacoremlrver-wsdlrp_service.wsdl

If the output shows 'root' as the owner, then please change the access rights of the file to be owned by the APPLMGR User. Please be aware :To be able to change the access rights you need the root user privilege!

3. Within the open shell change to the root User access, change the access rights and verify the access rights again.

EBS R12重启后无法进入登录页面的更多相关文章

  1. 详解springmvc控制登录用户session失效后跳转登录页面

    springmvc控制登录用户session失效后跳转登录页面,废话不多少了,具体如下: 第一步,配置 web.xml <session-config> <session-timeo ...

  2. Oracle EBS R12经验谈(二)

    作者: jianping.ni    时间: 2009-2-13 12:52     标题: Oracle EBS R12经验谈(二) OAF页面:银行帐户开户人LOV值列表无值    在输入 应付超 ...

  3. 处理Oracle EBS R12登录首页跳转出现unexpected error问题(转)

    原文地址: 处理Oracle EBS R12登录首页跳转出现unexpected error问题 经上网搜索,造成此问题的问题有很多,如内存不足.系统参数配置不当.程序代码.系统表空间不足等原因.查询 ...

  4. 集群重启后启动ambari-server访问Web页面无法启动集群解决

    集群重启后启动ambari-server访问Web页面无法启动集群解决 使用ambari部署的集群重新启动后,必须手动重启ambari-server和所有集群主机上的ambari-agent. amb ...

  5. Spring Security4.1.3实现拦截登录后向登录页面跳转方式(redirect或forward)返回被拦截界面

    一.看下内部原理 简化后的认证过程分为7步: 用户访问网站,打开了一个链接(origin url). 请求发送给服务器,服务器判断用户请求了受保护的资源. 由于用户没有登录,服务器重定向到登录页面 填 ...

  6. 解决页面使用ifrmae后,在session失效后登录页面在子页面中显示(子窗体出现父窗体)

    在登录页面中添加js判断当前页面是否是父页面,诺不是则父页面跳转至登录页面. <script type="text/javascript"> //解决登录后多个父窗体问 ...

  7. session失效刷新后登录页面嵌入在iframe中的前台解决办法

    在前台登录页面中加入JS代码,判断登录页面是否在iframe中,在iframe中就跳转出去 例: //判断是否在iframe中,在里面就跳出去 if (top.location.href != loc ...

  8. jsp登录页面,展示错误信息,刷新页面后错误依然存在解决方案

    在做登录页面的时候,通常使用form表单同步提交的方法进行提交的,也就是在form表单里去写action,如果登录失败,jsp通过jstl表达式获取错误信息展示在页面上,但是有一个问题就是,即使你刷新 ...

  9. 【BIEE】安装好BIEE后,修改默认登录页面不为QuickStart页面

    已经安装好了BIEE,但是发布了自己的资料库后,默认的登录页面为QuickStart,导致已登录就看到错误页面 现在进行如下修改即可 点击登录身份后的名字,例如我的是weblogic 选择[我的账户] ...

随机推荐

  1. 由ArrayList构造函数源码引出的问题

    ArrayList应该用得很多了.最近看了看其源码,发现有很多细节,如果要我们自己来实现,估计会考虑不到.当然,这些细节跟jdk本身一些实现的bug有关,如果不去深挖,定然是不能发现.本文从Array ...

  2. dyld: Symbol not found: _OBJC_CLASS_$_NSURLSessionDataTask

    dyld: Symbol not found: _OBJC_CLASS_$_NSURLSessionDataTask   Referenced from: /var/mobile/Applicatio ...

  3. C# 获取MAC地址

    /********************************************************************** * C# 获取MAC地址 * 说明: * 在C#中获取本 ...

  4. 解决R速度太慢问题

    R的速度慢一直被人诟病,最近做一个比较大的dataset的分析,跑得实在太慢,发现症结是R的data frame的index太慢: 以下为测试: gene_list = 1:100000 eQTL_m ...

  5. IIS 发布网站 ashx无法访问

    IIS6 问题 1.是否安装相应的.net版本 2.查看.net版本是否一致 3.查看web 服务扩展中.net版本是否允许. 4.添加相应的MIME类型文件 在IIS中右键网站→属性→主目录→配置→ ...

  6. MYSQL基本操作语句

    0.修改密码:mysqladmin -u root -p password 123456 导出数据库:mysqldump -u root -p yunpay>yunpay.sql 导入数据库:m ...

  7. 手机自适应meta设置

    <meta name="format-detection" content="telephone=no"><meta name="v ...

  8. HDU 5943 Kingdom of Obsession

    题意:n个人编号为[s+1, s+n],有n个座位编号为[1,n],编号为 i 的人只能坐到编号为它的约数的座位,问每个人是否都有位置坐. 题解:由于质数只能坐到1或者它本身的位置上,所以如果[n+1 ...

  9. bk.

    http://ol.tgbus.com/zt2013/gzsnew/ 巴士盘点 十大游戏工作室 http://bbs.3dmgame.com/forum.php?mod=viewthread& ...

  10. SQL Server中常用的SQL语句(转):

    SQL Server中常用的SQL语句 转自:http://www.cnblogs.com/rainman/archive/2013/05/04/3060428.html 1.概述 名词 笛卡尔积.主 ...