Flexagon has developed a set of silent install scripts (click link to download) for WebLogic 12.1.3 and the ADF Runtime (which is required for FlexDeploy). These scripts are provided as is, and can be modified as required.
Unix Install
Copy the silent install scripts file to the target server and follow the instructions below. Directory Structure is derived from Oracle documentation http://docs.oracle.com/middleware/1213/soasuite/SOEDG/edg_storage.htm#SOEDG2168. We will use local storage for all directories.
...
Create and initialize directories where software will be installed. Modify locations as appropriate.
Code Block |
---|
|
mkdir c:/u01/oracle |
Download and Install Java
...
WebLogic and ADF Runtime binaries will be installed in c:/u01/oracle/products/fmw1213. Modify ORACLE_HOME directory in fmw_1213_install.rsp if another location is desired.
Code Block |
---|
language | bash |
---|
theme | RDark |
---|
title | For 32 bit OS |
---|
|
set JAVA_HOME=c:/u01/oracle/products/java8
%JAVA_HOME%/bin/java.exe -d32 -jar fmw_12.1.3.0.0_infrastructure.jar -nowait -silent -responseFile fmw_1213_install.rsp |
Code Block |
---|
language | bash |
---|
theme | RDark |
---|
title | For 64 bit OS |
---|
|
set JAVA_HOME=c:/u01/oracle/products/java8
%JAVA_HOME%/bin/java.exe -d64 -jar fmw_12.1.3.0.0_infrastructure.jar -nowait -silent -responseFile fmw_1213_install.rsp |
...