Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Flexagon has developed a set of silent install scripts for WebLogic 12.1.3, which can be downloaded here.  

Unix Install

Copy the downloaded zip file to the target server and following 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.
WebLogic and ADF Runtime software will be installed in /u01/oracle/products/fmw1213 (modify ORACLE_HOME directory in fmw_1213_install.rsp if another location is desired.

Setup

These instructions will use the oracle user and dba group, but you can any other user and group names as desired.

Create oracle user if it does not exist

useradd -m oracle
passwd oracle (enter password when prompted)


Create dba group and assign as oracle user’s primary group

groupadd dba
usermod –g dba oracle



Create and initialize directories where software will be installed. Modify locations as appropriate.

mkdir –p /u01/oracle
chown –R oracle:dba /u01/oracle
chmod –R 775 /u01 


Setup /etc/oraInst.loc file. Modify locations as appropriate.

echo "inventory_loc=/u01/oracle/oraInventory" > /etc/oraInst.loc
echo "inst_group=dba" >> /etc/oraInst.loc
chmod 755 /etc/oraInst.loc
  • No labels