|
With an editor of your choosing, create 3 copies of
the .bash_profile file then edit each to set the environment appropriately
for each of the 3 Oracle Collaboration Suite. For example:
1. Name the first copy .ocs_inf_profile and add the
following lines:
umask 022
export ORACLE_BASE=<Oracle products directory, such as /oracle>
export ORACLE_HOME=$ORACLE_BASE/<infrastructure directory, such as ocs_inf>
export ORACLE_SID=<infrastructure database SID, such as iasdb>
export PATH=$PATH:$ORACLE_HOME/bin
export TMPDIR=/tmp
2. Name the second copy .ocs_store_profile and add the
following lines:
umask 022
export ORACLE_BASE=<Oracle products directory, such as /oracle>
export ORACLE_HOME=$ORACLE_BASE/<info store directory, such as ocs_store>
export ORACLE_SID=<info store SID, such as storedb>
export PATH=$PATH:$ORACLE_HOME/bin
export TMPDIR=/tmp
3. Name the first copy .ocs_mid_profile and add the
following lines:
umask 022
export ORACLE_BASE=<Oracle products directory, such as /oracle>
export ORACLE_HOME=$ORACLE_BASE/<mid tier directory, such as ocs_mid>
export ORACLE_SID=<info store SID, such as storedb>
export PATH=$PATH:$ORACLE_HOME/bin
export TMPDIR=/tmp
Make these 3 files executable with the following commands:
chmod 744 .ocs_inf_profile
chmod 744 .ocs_store_profile
chmod 744 .ocs_mid_profile
|