Run Repository Creation Utility (RCU) for Oracle Identity Management components

 
 
 
 

Installing Oracle Fusion Applications > Setting up Identity and Access Management Node > Run Repository Creation Utility (RCU) for Oracle Identity Management components

Previous: Install Oracle 11g Database (Identity management database)

RCU for Oracle Identity Management components is only available for Linux and Windows platforms and the Fusion Application setup ships with Linux only RCU for Identity Management components.

So we will use Linux RCU only in this step. Let’s create a directory to extract the RCU files.

[fusion@idmhost ~]$ mkdir /app/fusion/provisioning/fmw_rcu

[fusion@idmhost ~]$ cd /app/fusion/provisioning/fmw_rcu

Unzip the RCU which ships with the installation.

[fusion@idmhost fmw_rcu]$ unzip /stage/installers/fmw_rcu/linux/rcuHome.zip

Run the RCU now.

[fusion@idmhost ~]$ cd /app/fusion/provisioning/fmw_rcu/bin

[fusion@idmhost bin]$ ./rcu &

Click Next

Select Create and click Next

Enter details of our existing database and click Next

Once prerequisites check completes, click OK

Mention the prefix as “FA”. Till 11.1.6, Oracle was advising to use EDG or ISA prefix but we followed “FA” and 11.1.7 onwards they have made it mandatory to use “FA” only.

Select following components.

– Oracle Internet Directory

– Oracle Identity Federation

– Oracle Identity Manager

– Oracle Access Manager

Please note that following components will be automatically selected when you select above.

– Metadata Services

– Audit Services

– SOA Infrastructure

– User Messaging Service

The prerequisite checks might fail. Click OK to see the error message.

The error message is following.

Error: XATRANS Views are not installed on this Database. This is required by the OIM Schema

Action: Install view XAVIEWS as SYS user on this Database.

Refer to the Oracle Database Release Documentation for installation details.

RCU-6092:Component Selection validation failed.

To fix this, please run the following SQL to create XA views.

[fusion@idmhost bin]$ cd /app/database/product/11.2.0/dbhome_1/rdbms/admin/

[fusion@idmhost admin]$ sqlplus / as sysdba

SQL> @xaview.sql

DROP VIEW v$xatrans$

*

ERROR at line 1:

ORA-00942: table or view does not exist

DROP VIEW v$pending_xatrans$

*

ERROR at line 1:

ORA-00942: table or view does not exist

View created.

View created.

Now the prerequisites check should complete successfully.

We have specified same password everywhere. Ie.e “Oracle123″. Click Next

Click Next

Click OK

Once tablespaces are created, click OK

Review the summary and click “Create” to start creating the schemas.

Once RCU finishes, review the summary and click Close

Run Repository Creation Utility (RCU) for Oracle Identity Management components的更多相关文章

  1. 使用Repository Creation Utility创建档案库并连接

    使用Repository Creation Utility创建档案库 档案库创建方式 1. 使用Repository Creation Utility创建 1.1使用下载的RCU http://www ...

  2. Install Identity management Database

    Install Identity management Database         Installing Oracle Fusion Applications > Setting up I ...

  3. Oracle Order Management DropShip Flow for R12

    Oracle Order Management DropShip Flow for R12 Email ThisBlogThis!Share to TwitterShare to FacebookSh ...

  4. Oracle User Management FAQ翻译及学习笔记

    转载 最近了解到AME 的东西,很迫切,先转载一篇 [@more@] Oracle User Management FAQ翻译及学习笔记 写在前面 本文主要是翻译的英文版的Oracle User Ma ...

  5. Oracle Inventory Management Application Program Interface ( APIs)

    In this Document   Goal   Solution   References APPLIES TO: Oracle Inventory Management - Version 12 ...

  6. Windows 的 Oracle Data Access Components (ODAC)

     下载 x64bit https://www.oracle.com/technetwork/cn/database/windows/downloads/index.html 适用于 Windows 的 ...

  7. Oracle Inventory Management Application Program Interface ( APIs) (Doc ID 729998.1)

    In this Document Goal Solution References APPLIES TO: Oracle Inventory Management - Version 12.0.0 a ...

  8. Oracle Semaphore Management in UNIX Administration

    Oracle UNIX/Linux Tips by Burleson Consulting Semaphores and Oracle 11g 信号量和数据库 Semaphores are data ...

  9. Oracle Metadata Management (OMM)元数据管理 12.2.1发布

    元数据管理元数据管理是解决大量关键业务和技术挑战的基础,这些挑战包括元数据实体有多少,上游数据变化的影响,在浏览器中提供友好的分析展现界面,或提供企业范围内的元数据现状分析和改进视图.OMM是一款基于 ...

随机推荐

  1. 模型构建<1>:模型评估-分类问题

    对模型的评估是指对模型泛化能力的评估,主要通过具体的性能度量指标来完成.在对比不同模型的能力时,使用不同的性能度量指标可能会导致不同的评判结果,因此也就意味着,模型的好坏只是相对的,什么样的模型是较好 ...

  2. 持续集成之Jenkins插件使用(一)- 多个job之间的串并联

    转载自:http://qa.blog.163.com/blog/static/190147002201391661510655/ Jenkins除了开源和免费,还有一个最吸引人的功能之一就是支持插件. ...

  3. 使用TensorFlow高级别的API进行编程

    这里涉及到的高级别API主要是使用Estimator类来编写机器学习的程序,此外你还需要用到一些数据导入的知识. 为什么使用Estimator Estimator类是定义在tf.estimator.E ...

  4. Map:HashMap和TreeMap

    一.Map集合     特点:将键映射到值得对象 Map集合和Collection集合的区别? Collection:是单列集合,存储的是单独出现的元素    Map: 是双列集合,存储的是键值对形式 ...

  5. 如何在java中跳出当前多重嵌套循环?有几种方法?

    如何在java中跳出当前多重嵌套循环?有几种方法? - 两种方法   - 1.在外层循环定义标记          ok:          for(int i=0;i<100;i++){    ...

  6. python中的__all__和__slots__

    python两个有趣属性__all__可用于模块导入时限制,如:from module import *此时被导入模块若定义了__all__属性,则只有all内指定的属性.方法.类可被导入~若没定义, ...

  7. Leetcode 树 Populating Next Right Pointers in Each Node II

    本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie Populating Next Right Pointers in Each Node II ...

  8. MVC实现多选下拉框

    借助Chosen Plugin可以实现多选下拉框. 选择多项: 设置选项数量,比如设置最多允许2个选项: 考虑到多选下拉<select multiple="multiple" ...

  9. JS图片自己主动轮换效果实现

    今天不在状态,五一快到了,俺就特想玩了.好了,天色已晚,闲话不多说,看下用javaScript 实现的图片自己主动轮换效果,先看图片 以下是详细的代码,还是比較简单的. <!DOCTYPE ht ...

  10. 基于svnserve的SVN服务器(windows下安装与配置)

    基于svnserve的SVN服务器(windows下安装与配置) 基于svnserve的SVN服务器(windows下安装与配置)关键字: svn 安装SVNserve 从http://subvers ...