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

...