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
languagebash
themeRDark
set ORACLE_INSTALL_HOME=c:/u01/oracle/products/fmw1213                << REM modify if you have installed software in different folder >>
set ORACLE_CONFIGINSTALL_DIRECTORYHOME=c:/u01/oracle/products/configfmw1213
REM modify if you are using                << modify if you are using different different folder structure, domain will be created under this structure
>>set ORACLE_CONFIG_DIRECTORY=c:/u01/oracle/config
set JAVA_HOME=c:/u01/oracle/products/java8
set WLS_SCHEMA_PASSWORD=                                              <<fill in password for new FD_ schemas for REM fill in password for new FD_ schemas for Weblogic, same as what was used in previous step>>
set DOMAIN_PASSWORD=                                                  <<FILL previous step
set WLS_SCHEMA_PASSWORD=
REM FILL IN VALUE HERE - password for new domain to be created here>> here
set DOMAIN_PASSWORD=
set FDWLS_DOMAIN_NAME=fd_domain
set FDWLS_ADMIN_DOMAIN_DIRECTORY=%ORACLE_CONFIG_DIRECTORY%/domains/%FDWLS_DOMAIN_NAME%
set FDWLS_ADMIN_USER=weblogic
set FDWLS_ADMIN_PASSWORD=%DOMAIN_PASSWORD%
set FDWLS_ADMIN_LISTEN_ADDRESS=%COMPUTERNAME%
set FDWLS_ADMIN_LISTEN_PORT=7001
set FD_ORACLE_MW_HOME=%ORACLE_INSTALL_HOME%
set FDWLS_BASE_INSTALL_DIRECTORY=%ORACLE_CONFIG_DIRECTORY%/applications/%FDWLS_DOMAIN_NAME%
set FDWLS_NODEMANAGER_HOST=%COMPUTERNAME%
set FDWLS_NODEMANAGER_PORT=5556
set FDWLS_NODEMANAGER_USER=weblogic
set FDWLS_NODEMANAGER_PASSWORD=%DOMAIN_PASSWORD%
set FDWLS_NODEMANAGER_TYPE=SSL
set FLEXDEPLOY_SERVER_PORT=7003
set FLX_INSTALL_RCU_DB_URL=              <<FILL_PASSWORD%
set FDWLS_NODEMANAGER_TYPE=SSL
set FLEXDEPLOY_SERVER_PORT=7003
REM FILL IN JDBC URL HERE to RCU schema database>>database,  For example - jdbc:oracle:thin:@host:port:sid or jdbc:oracle:thin:@host:port/servicename
set FLX_INSTALL_RCU_DB_URL=
set FLX_INSTALL_RCU_DB_USER=FD_STB
set FLX_INSTALL_RCU_DB_PASSWORD=%WLS_SCHEMA_PASSWORD%

Create WebLogic Domain

Code Block
languagebash
themeRDark
%FD_ORACLE_MW_HOME%/wlserver/common/bin/wlst.sh createWLSDomain.py

Extend WebLogic Domain for ADF

Code Block
languagebash
themeRDark
%FD_ORACLE_MW_HOME%/wlserver/common/bin/wlst.sh createADFDomain.py

Start Admin Server

Code Block
languagebash
themeRDark
cd %FDWLS_ADMIN_DOMAIN_DIRECTORY%
startWebLogic.cmd

Create Managed Server

Code Block
languagebash
themeRDark
%FD_ORACLE_MW_HOME%/wlserver/common/bin/wlst.sh createFDServer.py

Start Node Manager

Code Block
languagebash
themeRDark
cd %FDWLS_ADMIN_DOMAIN_DIRECTORY%/bin
startNodeManager.cmd

...