8i | 9i | 10g | 11g | 12c | 13c | 18c | 19c | 21c | 23c | Misc | PL/SQL | SQL | RAC | WebLogic | Linux

Home » Articles » 11g » Here

ADF 11g Silent Installation

This article demonstrates how to perform a silent installation of Application Development Framework (ADF) 11g (11.1.1.9) on Oracle Linux.

Software

Download the ADF software.

Assumptions

This article makes the following assumptions.

Setup

Unzip the ADF software into a suitable directory.

mkdir -p /u01/software/adf
cd /u01/software/adf
unzip ../ofm_appdev_generic_11.1.1.9.0_disk1_1of1.zip

Set up the environment. This is not really necessary as we are specifying all the important information in the installation command itself.

export MW_HOME=/u01/app/oracle/middleware
export WLS_HOME=$MW_HOME/wlserver_10.3
export WL_HOME=$WLS_HOME
# Set to the appropriate JAVA_HOME.
export JAVA_HOME=/u01/app/oracle/jdk1.7.0_79
export PATH=$JAVA_HOME/bin:$PATH

Create Response File

The "Disk1/stage/Response" directory contains sample response files to use with a silent installation. The samples contain comments and extra newline characters which are not necessary. The only setting we must amend is the MIDDLEWARE_HOME.

Create a response file called "/u01/software/adf.rsp" with the following contents.

[ENGINE]
Response File Version=1.0.0.0.0

[GENERIC]
SPECIFY_DOWNLOAD_LOCATION=false
SKIP_SOFTWARE_UPDATES=true
SOFTWARE_UPDATES_DOWNLOAD_LOCATION=
MIDDLEWARE_HOME=/u01/app/oracle/middleware
APPSERVER_TYPE=WLS

[SYSTEM]

[APPLICATIONS]

[RELATIONSHIPS]

You also need to specify an Oracle inventory location. Create a file called "/u01/software/oraInst.loc" with the following contents.

inventory_loc=/u01/app/oraInventory
inst_group=oinstall

ADF Silent Installation

Run the installer in silent mode, specifying the response file, inventory location and the JRE location.

cd /u01/software/adf/Disk1

./runInstaller -silent -ResponseFile /u01/software/adf.rsp -invPtrLoc /u01/software/oraInst.loc -jreLoc /u01/app/oracle/jdk1.7.0_79

For more information see:

Hope this helps. Regards Tim...

Back to the Top.