01 oracle fusion applications installation_ install fusion applications provisioning framework

15
Like 0 1 Tweet 0 Log in ORA Training Blog Serious about Oracle. Home About Downloadable Plug-and-Play Sandboxes (Virtual Machines) RSS feed © 2008-2013 ORA Training Blog Oracle Fusion Applications Installation: Install Fusion Applications Provisioning Framework Prerequisites (Linux only) Make sure that the host name is correctly set. I our case it is fmwhost.paramlabs.com [root@rfmwhost~]# hostname fmwhost.paramlabs.com If not correct, set it using following command. [root@ rfmwhost ~]# hostname fmwhost.paramlabs.com [root@fmwhost ~]# more /etc/sysconfig/network NETWORKING=yes NETWORKING_IPV6=yes HOSTNAME=fmwhost.paramlabs.com If not correct, modify the value here to correct hostname. If you changed hostname or IP address, please make sure to update in all following files if not automatically updated. [root@fmwhost ~]# more /etc/sysconfig/network-scripts/ifcfg-eth0 [root@fmwhost ~]# more /etc/sysconfig/networking/devices/ifcfg-eth0 [root@fmwhost ~]# more /etc/sysconfig/networking/profiles/default/ifcfg-eth0 Restart the machine if you changed the hostname or IP to make sure it remains persistent. Make sure to have following entries in hosts file. [root@fmwhost ~]# more /etc/hosts Share Share Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in... 1 of 15 10/16/2013 10:35 AM

Upload: otenyop

Post on 01-Jan-2016

76 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

Like 01

Tweet 0

Log in

ORA Training BlogSerious about Oracle.

HomeAboutDownloadable Plug-and-Play Sandboxes (Virtual Machines)

RSS feed© 2008-2013 ORA Training Blog

Oracle Fusion Applications Installation: Install Fusion Applications ProvisioningFramework

Prerequisites (Linux only)

Make sure that the host name is correctly set. I our case it is fmwhost.paramlabs.com

[root@rfmwhost~]# hostname

fmwhost.paramlabs.com

If not correct, set it using following command.

[root@ rfmwhost ~]# hostname fmwhost.paramlabs.com

[root@fmwhost ~]# more /etc/sysconfig/network

NETWORKING=yes

NETWORKING_IPV6=yes

HOSTNAME=fmwhost.paramlabs.com

If not correct, modify the value here to correct hostname.

If you changed hostname or IP address, please make sure to update in all following files if notautomatically updated.

[root@fmwhost ~]# more /etc/sysconfig/network-scripts/ifcfg-eth0

[root@fmwhost ~]# more /etc/sysconfig/networking/devices/ifcfg-eth0

[root@fmwhost ~]# more /etc/sysconfig/networking/profiles/default/ifcfg-eth0

Restart the machine if you changed the hostname or IP to make sure it remains persistent.

Make sure to have following entries in hosts file.

[root@fmwhost ~]# more /etc/hosts

ShareShare

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

1 of 15 10/16/2013 10:35 AM

Page 2: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

# Do not remove the following line, or various programs

# that require network functionality will fail.

127.0.0.1 localhost.localdomain localhost

#::1 localhost6.localdomain6 localhost6

192.168.112.111 fmwhost.paramlabs.com fmwhost

192.168.112.111 fdbhost.paramlabs.com fdbhost

Important Note: If you noticed, we have made 2 entries here for same IP. The reason being, in case ifyou want to keep DB on different server or move it to different server later, we can easily do it since ourall configuration will use different DB host name.

If you are not using DNS resolution then comment out following entries in /etc/resolve.conf to speed upname resolution directly through hosts file.

[root@r12host ~]# more /etc/resolv.conf

#search paramlabs.com

If you have not already created the user fusion, please create as follows.

[root@fmwhost ~]# useradd -g dba -G oinstall fusion

[root@fmwhost ~]# passwd fusion

Changing password for user fusion.

New UNIX password:

Retype new UNIX password:

passwd: all authentication tokens updated successfully.

Change the system file /etc/security/limits.conf as follows.

[root@fmwhost ~]# cp -pr /etc/security/limits.conf /etc/security/limits.conf.bak

[root@fmwhost ~]# vi /etc/security/limits.conf

Edit the values as follows.

[root@fmwhost ~]# tail -3 /etc/security/limits.conf

# Fusion Applications specific changes

fusion soft nofile 327679

fusion hard nofile 327679

Also make sure UsePAM is set to Yes in /etc/ssh/sshd_config file

[root@fmwhost ~]# vi /etc/ssh/sshd_config

Edit /proc/sys/fs/file-max and set it to 6553600. No need for any changes if set to this or more.

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

2 of 15 10/16/2013 10:35 AM

Page 3: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

The change becomes effective immediately but does not persist after a reboot. To make the changepermanent edit /etc/sysctl.conf and set fs.file-max = 6553600

[root@fmwhost ~]# ulimit -u

24064

This should be 16384 or more

Make sure tmpfs size is more than the size you want to keep for the database SGA and PGA. In our casewe are going to reduce DB memory to only 2GB since this is demo installation on VM, hence changingtmpfs to 3GB or more

[root@fmwhost ~]# cp -pr /etc/fstab /etc/fstab.bak

[root@fmwhost ~]# vi /etc/fstab

Change values as follows (only if it is less this 3G)

[root@fmwhost ~]# grep tmpfs /etc/fstab

tmpfs /dev/shm tmpfs size=3G 0 0

Restart machine

Note: If this size is less than memory_target then you will get error

ORA-00845: MEMORY_TARGET not supported on this system

Make sure that ip_local_port_range value is 32768 to 61000

First checking existing value.

[root@fmwhost ~]# cat /proc/sys/net/ipv4/ip_local_port_range

9000 65500

Now let’s change as per the requirement.

[root@fmwhost ~]# echo “32768 61000″ > /proc/sys/net/ipv4/ip_local_port_range

[root@fmwhost ~]# cat /proc/sys/net/ipv4/ip_local_port_range

32768 61000

To make this change persistent across reboots, change value in /etc/sysctl.conf

[root@fmwhost ~]# cp -p /etc/sysctl.conf /etc/sysctl.conf.bak

[root@fmwhost ~]# vi /etc/sysctl.conf

Edit the values as follows.

[root@fmwhost ~]# grep 61000 /etc/sysctl.conf

net.ipv4.ip_local_port_range = 32768 61000

Before you install the Oracle Database using the Provisioning Wizard, ensure that the value of the kernel

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

3 of 15 10/16/2013 10:35 AM

Page 4: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

parameter shmmax on the database host is greater than the value of the System Global Area (SGA)Memory.

The value of SGA Memory (sga_target) is 9 GB in the default Database Configuration Assistant (DBCA)template for the Starter database. If you are running DBCA using the production DBCA templatepackaged with Oracle Fusion Applications Provisioning, the value of the SGA Memory is 18 GB. Ensurethat shmmax > (shmall * shmmni) > SGA Memory, where shmmax, shmall, shmmni are kernelparameters.

For example, to retrieve the values of these kernel parameters on Linux, use the following command:

[root@fmwhost ~]# /sbin/sysctl -a | grep shm

kernel.shmmax = 4398046511104

kernel.shmall = 1073741824

kernel.shmmni = 4096

vm.hugetlb_shm_group = 0

To set the value of a kernel parameter:

user@host> /sbin/sysctl -w sys.kernel.shmmax=value

If you are using VMWare or virtualbox, you can share the installation stage folder to the VM using sharedfolders option.

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

4 of 15 10/16/2013 10:35 AM

Page 5: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

[fusion@fmwhost ~]$ cd /mnt/hgfs/setup/installers/faprov/Disk1/

[fusion@fmwhost Disk1]$ ./runInstaller

(make sure NOT TO use “&” since this will prompt for java directory if java home is not set)

Starting Oracle Universal Installer…

Please specify JRE/JDK location ( Ex. /home/jre ), <location>/bin/java should exist :/mnt/hgfs/setup/jdk6

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

5 of 15 10/16/2013 10:35 AM

Page 6: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

If this is the first Oracle software on this machine using this user, it will prompt for inventory directorylocation.

Once prompted, run the following script as root.

[root@fmwhost ~]# /home/fusion/oraInventory/createCentralInventory.sh

Setting the inventory to /home/fusion/oraInventory

Setting the group name to dba

Creating the Oracle inventory pointer file (/etc/oraInst.loc)

Changing permissions of /home/fusion/oraInventory to 770.

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

6 of 15 10/16/2013 10:35 AM

Page 7: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

Changing groupname of /home/fusion/oraInventory to dba.

The execution of the script is complete

Click Next

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

7 of 15 10/16/2013 10:35 AM

Page 8: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

Once prerequisite check is completed, click Next

Create the root directory for installation as follows.

[root@fmwhost ~]# mkdir /app

[root@fmwhost ~]# chown fusion:dba /app

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

8 of 15 10/16/2013 10:35 AM

Page 9: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

Enter /app/fusion and click Next

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

9 of 15 10/16/2013 10:35 AM

Page 10: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

Review summary and click Install

Save inventory if required.

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

10 of 15 10/16/2013 10:35 AM

Page 11: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

Once installation is finished click Next

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

11 of 15 10/16/2013 10:35 AM

Page 12: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

Review the summary and click Finish

Next: Install Oracle 11g Database (Applications Transactional Database)

Installing Oracle Fusion Applications – steps

Install Fusion Applications Provisioning Framework1.Install Oracle 11g Database (Applications Transactional Database)2.Run Oracle Fusion Applications Repository Creation Utility (Applications RCU)3.Create another database for Oracle Identity Management Infrastructure (optional)4.Run Repository Creation Utility (RCU) for Oracle Identity Management components5.Install Oracle Identity and Access Management Components6.Apply mandatory Patches7.Configure Oracle Identity and Access Management components8.Integrate Oracle Identity Manager (OIM) and Oracle Access Manager (OAM)9.Install provisioning framework on Node 210.Create new Response File11.Provision an Applications Environment (Editing in progress, this link currently points to 11.1.5counterpart)

12.

Leave a comment | TrackbackMar 24th, 2013 | Posted by tushar | In Uncategorized« Oracle Fusion Applications Installation: Configure Oracle Identity and Access Management componentsOracle Fusion Applications Installation: Install Oracle 11g Database (Applications TransactionalDatabase) »

Show 6 trackbacks

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

12 of 15 10/16/2013 10:35 AM

Page 13: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

Leave a comment

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b><blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Name *

E-Mail * (will not be published)

Website

RSS for comments on this post

Search this blog

Hot topics

Fusion Applications installation 11.1.6 – Step by step guideOracle 12c (12.1) RAC (Real Applications Cluster) installation on Linux Virtual Machines – Step bystep guideFusion Applications installation 11.1.5 – Step by step guideInstalling Oracle Applications (eBusiness Suite) Release 12 on SolarisInstalling 11gR2 RAC on Linux x86-64 Virtual Machine – Step by step installation guideCreating Oracle VirtualBox Virtual Machine with Oracle LinuxFix for IE crash on launching forms in Oracle Applications 11i (11.5.10)Fix for “Internet explorer has closed this webpage to help protect your computer”

Categories

Application server (20)Applications Performance Tuning (3)Browser issues (4)Cloning Oracle Applications (2)Concurrent manager (3)Database Performance Tuning (4)Database programming (4)Fusion Applications Provisioning (28)Fusion Middleware (18)HTTP Server (10)Identity Management (13)Installing Oracle Applications (23)Linux/Unix/Solaris (18)Oracle (61)Oracle Applications (39)Oracle Applications DBA (33)Oracle Applications issues (8)Oracle Database (19)

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

13 of 15 10/16/2013 10:35 AM

Page 14: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

Oracle Database cloning (2)Oracle DBA (26)Oracle developers (6)Oracle Fusion Applications (30)Oracle Fusion Applications installation (24)Oracle Internet Directory (11)Oracle PL/SQL (3)Oracle RAC (8)Oracle SQL (1)Repository Creation Utilitiy (6)Shell scripting (6)Uncategorized (35)Unix administration (9)VirtualBox (13)Virtualization (13)Webgate (10)Windows (5)Windows Clients (4)Windows issues (4)

Recent Posts

Coming Soon: Step by step installation guide for Fusion Applications 11.1.7Fusion Applications Financials Virtual Machine available nowTraining: Oracle Fusion Applications Installation (including Identity & Access Managementinstallation) with FREE Fusion Apps Virtual MachineOracle 12c Real Application Clusters (RAC) downloadable plug-and-play VM now availableOracle 12c (12.1) RAC (Real Applications Cluster) installation on Linux Virtual Machines – Step bystep guide

Archives

October 2013September 2013August 2013July 2013May 2013April 2013March 2013February 2013January 2013December 2012November 2012September 2012August 2012April 2012March 2012February 2012August 2010May 2010April 2010December 2009June 2009April 2009

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

14 of 15 10/16/2013 10:35 AM

Page 15: 01 Oracle Fusion Applications Installation_ Install Fusion Applications Provisioning Framework

March 2009

Recent Comments

jlam on Coming Soon: Step by step installation guide for Fusion Applications 11.1.7Thireesh on Oracle Fusion Applications Installation: Provision an Applications EnvironmentThireesh on Oracle Fusion Applications Installation: Provision an Applications Environmentjlam on Oracle Fusion Applications installation – Step by step guide (11.1.6)tushar on Installing 11g RAC on Linux VM: Install Oracle Database software and create RACdatabase

Powered by WordPress | Theme by NeoEase | Valid XHTML 1.1 and CSS 3 Top

Oracle Fusion Applications Installation: Install Fusion Applications Pro... http://www.oratraining.com/blog/2013/03/oracle-fusion-applications-in...

15 of 15 10/16/2013 10:35 AM