Oracle Fusion Applications : Provisioning Framework Installation

In today’s post I am going to cover Installation of Oracle Fusion Applications Provisioning Framework which is first step for Fusion Applications Installation. Refer to my previous posts in series “Learn Oracle Fusion Applications with onlineAppsDBA.com”  Oracle Fusion Applications Concepts ,  Install Oracle Fusion Applications in 10 Steps and Oracle Fusion Applications Framework Overview

.

0. Create User
Create operating system user fusionapps (This user will be used to install Fusion Applications)

 

1. Configure JDK

cd $software_unzip_loc/installers/jdk

unzip jdk6.zip (This will create directory jdk6 which will be used as jreHome during installation )
.

2. Install Fusion Application Software

Login as user fusionapps and use below steps to install Fusion Applications Framework

a) cd $software_unzip_loc/installers/faprov/Disk1
b)./runInstaller -jreLoc $software_unzip_loc/installers/jdk/jdk6

Installer failed for following RPMS

Checking for binutils-2.17.50.0.6; found binutils-2.17.50.0.6-14.el5-x86_64.    Passed
Checking for compat-libstdc++-33-3.2.3-x86_64; found compat-libstdc++-33-3.2.3-61-x86_64.       Passed
Checking for compat-libstdc++-33-3.2.3-i386; found compat-libstdc++-33-3.2.3-61-i386.   Passed
Checking for elfutils-libelf-0.125; found elfutils-libelf-0.137-3.el5-x86_64.   Passed
Checking for elfutils-libelf-devel-0.125; Not found.    Failed <<<<
Checking for gcc-4.1.1; Not found.      Failed <<<<
Checking for gcc-c++-4.1.1; Not found.  Failed <<<<
Checking for glibc-2.5-12-x86_64; found glibc-2.5-49-x86_64.    Passed
Checking for glibc-2.5-12-i686; found glibc-2.5-49-i686.        Passed
Checking for glibc-common-2.5; found glibc-common-2.5-49-x86_64.        Passed
Checking for glibc-devel-2.5-x86_64; Not found. Failed <<<<
Checking for glibc-devel-2.5-12-i386; Not found.        Failed <<<<
Checking for libaio-0.3.106-x86_64; found libaio-0.3.106-5-x86_64.      Passed
Checking for libaio-0.3.106-i386; found libaio-0.3.106-5-i386.  Passed
Checking for libaio-devel-0.3.106; Not found.   Failed <<<<
Checking for libgcc-4.1.1-x86_64; found libgcc-4.1.2-48.el5-x86_64.     Passed
Checking for libgcc-4.1.1-i386; found libgcc-4.1.2-48.el5-i386. Passed
Checking for libstdc++-4.1.1-x86_64; found libstdc++-4.1.2-48.el5-x86_64.       Passed
Checking for libstdc++-4.1.1-i386; found libstdc++-4.1.2-48.el5-i386.   Passed
Checking for libstdc++-devel-4.1.1; Not found.  Failed <<<<
Checking for make-3.81; found make-1:3.81-3.el5-x86_64. Passed
Checking for sysstat-7.0.0; Not found.  Failed <<<<
Check complete. The overall result of this check is: Failed <<<<

3. Configure YUM to install missing RPMs on OEL 5 update 5

a) cd /etc/yum.repos.d

b) wget http://public-yum.oracle.com/public-yum-el5.repo

c) open /etc/yum.repos.d/public-yum-el5.repo  and change  enabled=0 to enabled=1  for section

[el5_u5_base] name=Enterprise Linux $releasever U5 – $basearch – base
baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/5/base/$basearch/
gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
gpgcheck=1
enabled=1

[ol5_u5_base] name=Oracle Linux $releasever – U5 – x86_64 – base
baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL5/5/base/x86_64/
gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
gpgcheck=1
enabled=1

I am installing Oracle Fusion Applications on Oracle Enterprise Linux 5 update 5

d) Install RPMs

yum install  sysstat
yum install  elfutils-libelf-devel
yum install  gcc
yum install  gcc-c++
yum install  glibc-devel
yum install  libaio-devel
yum install  libstdc++-devel

4. Set Kernel Parameters

Checking for hardnofiles=4096; hardnofiles=1024.        Failed <<<<
Checking for softnofiles=4096; softnofiles=1024.        Failed <<<<
Check complete. The overall result of this check is: Failed <<<<

a) Update /etc/security/limits.conf with entry like

fusionapps  hard nofile 4096
fusionapps  soft  nofile  4096

I am using user fusionapps to install Oracle Fusion Applications

(I had to re-start machine for kernel parameter setting)

.

.

This is the directory under which Fusion Applications Framework will be installed.

After successful installation of Provision Framework, you will get directory structure like below.

About the Author Atul Kumar

Oracle ACE, Author, Speaker and Founder of K21 Technologies & K21 Academy : Specialising in Design, Implement, and Trainings.

follow me on:

Leave a Comment:

8 comments
Fusion Lover says June 20, 2011

Thanks Atual, Did you have to create any Specific user(s) prior to the installation?

Reply
Atul Kumar says June 20, 2011

@ Fusion Lover,
Yes, I created user fusionapps and installed using this user (post updated)

Reply
Fusion Lover says June 21, 2011

Thanks Atul! I will be running the setup tonight using your steps.
Would you also be posting the next steps for installing the Apps?

Reply
Charl says June 24, 2011

Hi Atul

I am at Starting the Applications RCU (3-12 in the Install Guide), but I cannot find rcu.sh in the stuff that was unzipped. Any idea where I can get it?

Thanks
Charl

Reply
Neha Mittal says June 24, 2011

Charl, go to bin under the directory where you unzipped apps_rcu zip file, you will see rcu executable ,run it as:

./rcu

For eg:- /installers/apps_rcu/linux/bin

Thanks
Neha

Reply
Atul Kumar says June 24, 2011

@ Charl/Neha Mittal,

Thanks Neha. Charl, just to add to neha’s point, rcu for Fusion Apps is under $unzip_location/installer/apps_rcu/linux[or windows]/bin/rcu

Please note that for linux there is no rcu.sh (as documented) it is rcu which is shell script, run this script to create schema.

Stay tuned to this blog for steps on how to create fusion apps schema.

Reply
amr elnadi says February 21, 2012

hi

coudl you please provide me the steps in windows 2003 i cant install that even now

Reply
Swagat Mohanty says February 15, 2014

Hi Atul/Neha –
Can you provide me metalink Note Id for this Oracle Fusion Application Installation on Linux 5.

Reply
Add Your Reply

Not found