Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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.

Table of Content Zone

Table of Contents

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.

...

Setup Environment

Code Block
languagevbbash
themeRDark
REM modify if you have installed software in different folder
set ORACLE_INSTALL_HOME=c:/u01/oracle/products/fmw1213
set JAVA_HOME=c:/u01/oracle/products/java8
REM fill in sys password here
set SYS_DB_PASSWORD=
REM fill in password for new FD_ schemas for Weblogic
set WLS_SCHEMA_PASSWORD=
REM fill in value here (either host:port:sid or host:port@servicename)
set DB_CONNECT_STRING=

...

From directory where install scripts are located:

Code Block
languagebash
themeRDark
> PasswordFile.txt
chmod 700 PasswordFile.txt
echo %SYS_DB_PASSWORD%>PasswordFile.txt
echo %WLS_SCHEMA_PASSWORD%>>PasswordFile.txt

Execute RCU command (from install script directory where PasswordFile.txt file is located)

Code Block
languagebash
themeRDark
%ORACLE_INSTALL_HOME%/oracle_common/bin/rcu -silent -databaseType ORACLE -createRepository -connectString %DB_CONNECT_STRING% -dbUser sys -dbRole SYSDBA -useSamePasswordForAllSchemaUsers true -schemaPrefix FD -component STB -component MDS -component IAU -component IAU_APPEND -component IAU_VIEWER -component OPSS -component WLS -f < PasswordFile.txt

...