R12.1/R12.2登录页面url 、hostname、IP 修改

How to change the Oracle EBusiness Suite url

Normally while you install oracle R12 it takes the hostname as url name. So, you can access the oracle apps instance as http://:/OA_HTML/AppsLogin

An example is http://machinename.domainname:8000/OA_HTML/AppsLogin

The following article will explain you how you can change the url to other name instead of hostname of the machine.

Here I am assuming the hostname of the server is HOSTNAME and currently the instance is accesible  from http://HOSTNAME.domainname:8000/OA_HTML/AppsLogin 
and we'll change the url to 
http://URLNAME.domainname:8000/OA_HTML/AppsLogin 

  • Set the apps environment file. 
  • Check the CONTEXT_FILE name
  • Take a backup of the context file

Now change the following parameter in context file.

1. s_webentryhost

This is the name of the host that receives the first HTTP request from the desktop client. Previously it was set as hostname of the server [HOSTNAME]. Change this value to URLNAME.

2. s_webentrydomain

This is domain name of the host that receives the first HTTP request from the desktop client
Change the domain name if required.

3. s_login_page

This is the URL used to access the Applications logon page.
Change it from the old value http://HOSTNAME.domainname:8000/OA_HTML/AppsLogin  to new value http://URLNAME.domainname:8000/OA_HTML/AppsLogin .

4. s_external_url

This is URL that third party tools use to connect to the E-Business Suite System. 
old value = http://HOSTNAME.domainname:8000/
new value = http://URLNAME.domainname:8000/

After changing the values, do the following.

  • Run the AutoConfig utility on all the application tier Servers
  • Restart application server processes
  • Test sign on from the web entry point

通过测试,url的修改在R12.1和R12.2中都是可以的;hostname的测试还没有做。

修改ebs服务器hostname的方法参看metalink文档:

How tochange hostname for E-Business Suite Release 12 on single node (文档 ID1277556.1)

修改IP参考:

Please see (Note: 554843.1 - How to change the IP Address on a R12 EBusiness Suite Installation). You will also have to purge the FND_NODES table and run AutoConfig on the database tier node then on the application tier node(s) as per (Note: 260887.1 - Steps to Clean Nonexistent Nodes or IP Addresses from FND_NODES).

For the client sides, you will have to edit the IP Address in the hosts file.

http://onlineappsdba.blogspot.com/2008/04/how-to-change-ip-address-in-oracle.html

时间: 2024-07-30 18:23:58

R12.1/R12.2登录页面url 、hostname、IP 修改的相关文章

java-登录前和登录成功的页面Url一样 怎么回事,求大神

问题描述 登录前和登录成功的页面Url一样 怎么回事,求大神 5C 为什么登录界面的Url是****/loginaction.action,登录成功后的页面也是****/loginaction.action?前后url一样,这样我模拟登陆怎么判断是否登录成功了呢 求详解 解决方案 那就是你的代码并没有跳转呀...要是登陆成功肯定要有跳转代码的呀 解决方案二: 看你跳转代码,当你点击登录按钮 跳转的是什么页面. 你可以传一个参数过去.当登录成功,把传的参数在成功页面显示 解决方案三: 判断登陆成功

使用正则表达式验证登录页面输入是否符合要求

先给大家展示下效果图: 废话不多说了,直接给大家贴代码了,具体代码如下所示: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <script src="js/jquery-1.8.0.min.js"></script> <script> $(f

一款经典的ajax登录页面 后台asp.net_AJAX相关

下面实现一个经典的登录页面,有保存密码功能,页面上所有的控件都是html控件,没有服务器控件 1,新建一名为login.htm的静态网页文件,作为登录页面,如图 body标签代码 复制代码 代码如下: <body onkeydown ="enterLogin()"> <!--添加按下键盘事件--> <div style="text-align: center"> <table border="1" cel

javaee-struts2 for javaEE 登录页面跳转问题

问题描述 struts2 for javaEE 登录页面跳转问题 刚刚学习JavaEE--SSH框架遇的问题 LoginAction页面如下: src路径下对struts.xml修改如下: 输入crazyit.orgleegang后跳转出现错误如下: 求各位大师帮帮忙! 解决方案 你的result映射有问题,要结合你的项目.输入的url等等来看这里有完整的例子,对照看下http://javatechig.com/java/struts/creating-login-application-usi

[Js插件]使用JqueryUI的弹出框做一个“炫”的登录页面

引言 查看项目代码的时候,发现项目中用到JqueryUi的弹出框,可拖拽,可设置模式对话框,就想着使用它弄一个登录页面. 弹出框 在Jquery Ui官网可定制下载弹出框,下载和弹出框下载相关的js文件,css文件. 官方网站:http://jqueryui.com/ 项目结构:   Login.html 引入文件: 1 <link href="Scripts/css/redmond/jquery-ui-1.10.4.custom.css" rel="styleshee

springmvc-spring mvc简单问题之实现登录页面到主页面的跳转映射

问题描述 spring mvc简单问题之实现登录页面到主页面的跳转映射 我现在有两个静态页面login.jsp和major.jsp 控制器里代码如下: @RequestMapping(value = "/login") public ModelAndView login(HttpServletRequest request, HttpServletResponse response) throws Exception { Map<String, Object> model

登录页面是否定时自动弹出

问题描述 像spring security这种登录控制,登录成功后,当session失效,需要重新登录,是进行一个操作的时候出现登录页面.还是做一个计时器,session过期后自动弹出登录页面? 解决方案 页面一般分头部分,尾部份,其他开发的页面都嵌套一个头,一个尾通用的js,样式等通过这里加载,同样可以在头部分用定时器来校验登录状态.一般来讲,没有特殊要求的话,都是等你下一个操作时校验.解决方案二:一般都是每个页面header里面校验session,失效了则重定向到登录界面.解决方案三:简单做

用jsp写的表单用户登录页面,访问mysql数据库时候 出错 ,如下图

问题描述 用jsp写的表单用户登录页面,访问mysql数据库时候 出错 ,如下图 在处理登录的时候为什么有时候出现500错误,有时候又出现找不到数据库连接,我用得mysql数据库,驱动程序也添加了的,求大神指教一下啊! 解决方案 可能数据库没连接上(因为不同数据库版本的驱动不同) 来检查你的数据库是否链接上 在你得到的Connection conn=DriverManager.getConnection(参数); 后面加一段代码 if(conn==null) System.out.println

java登录超时回到登录页面

问题描述 java登录超时回到登录页面 java登录超时回到登录页面 有没有实现此功能的思想呢? 或者有demo 代码最好了 ,谢谢~ 解决方案 首先需要在web.xml中设置项目中session超时时间,通常都是半小时: <session-config><session-timeout>30</session-timeout></session-config>: 之后设置监听器(Linstener),用来监听登录时候的用户名和密码session是否还存活,