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. Unzip install scripts in a new folder. All script execution should be performed from this scripts folder.
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.
...
Code Block |
---|
|
cd $FDWLS_ADMIN_DOMAIN_DIRECTORY
nohup ./startWebLogic.sh > AdminServer.out &
tail -f AdminServer.out
# (wait for server to start before continuing) |
Create Managed Server
Code Block |
---|
|
$FD_ORACLE_MW_HOME/wlserver/common/bin/wlst.sh createFDServer.py |
...
Code Block |
---|
|
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
...
Code Block |
---|
|
cd %FDWLS_ADMIN_DOMAIN_DIRECTORY%
startWebLogic.cmd
REM wait for server to start before continuing |
Create Managed Server
Code Block |
---|
|
%FD_ORACLE_MW_HOME%/wlserver/common/bin/wlst.sh createFDServer.py |
...
Code Block |
---|
|
cd %FDWLS_ADMIN_DOMAIN_DIRECTORY%/bin
startNodeManager.cmd
REM 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
...