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.

Skip If using Windows, skip to Windows Install

Unix Install

Copy the downloaded zip file to the target server and follow the instructions below.

About this Install

Directory Structure - see http://docs.oracle.com/middleware/1213/soasuite/SOEDG/edg_storage.htm#SOEDG2168
We will use local storage for all directories.

...

Code Block
languagebash
echo "inventory_loc=/u01/oracle/oraInventory" > /etc/oraInst.loc
echo "inst_group=dba" >> /etc/oraInst.loc
chmod 755 /etc/oraInst.loc

Install Java

Download ADF Runtime

Install WebLogic Binaries

WebLogic and ADF Runtime binaries will be installed in /u01/oracle/products/fmw1213 (modify ORACLE_HOME directory in fmwin fmw_1213_install.rsp if another location is desired.For 32 bit os

Code Block
languagebash
titleFor 32 bit OS
export JAVA_HOME=/u01/oracle/products/java8
$JAVA_HOME/bin/java -d32 -jar fmw_12.1.3.0.0_infrastructure.jar -silent -invPtrLoc /etc/oraInst.loc -responseFile fmw_1213_install.rsp

For 64 bit os

Code Block
languagebash
titleFor 64 bit OS
export JAVA_HOME=/u01/oracle/products/java8
$JAVA_HOME/bin/java -d64 -jar fmw_12.1.3.0.0_infrastructure.jar -silent -invPtrLoc /etc/oraInst.loc -responseFile fmw_1213_install.rsp

...

Code Block
languagebash
$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
    
Note

Remove PasswordFile.txt file after RCU schemas are successfully created, as it contains clear text passwords.

...

Code Block
languagebash
cd $FDWLS_ADMIN_DOMAIN_DIRECTORY/bin
nohup ./startNodeManager.sh > NodeManager.out &
tail -f NodeManager.out  (wait for Node Manager to start before continuing)


Start Managed Server

  • Go to console - http://<host>:7001/console
  • Login using credentials provided in environment setup
  • Navigate to Environments->Servers  (switch to control tab)
  • Start FlexDeploy_Server1

Anchor
wls_scrips_windows
wls_scrips_windows

...