Tuesday 11 February 2014

OBIEE 11g - bash_profile in LINUX

Bash Profile in LINUX :

# Using :  User Environment variables while starting the programs.
# Path : /home/oracle   -- Here oracle is user.

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

TEMP=/tmp
TMP=/tmp
ORACLE_BASE=/usr/app/oracle
ORACLE_HOME=/usr/app/oracle/product/11.2.0/client_1
TNS_ADMIN=/usr/app/oracle/product/11.2.0/client_1/network/admin
PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin
LD_LIBRARY_PATH=/usr/app/oracle/Middleware/Oracle_BI1/bifoundation/odbc/lib

export PATH TMP TEMP ORACLE_BASE ORACLE_HOME TNS_ADMIN LD_LIBRARY_PATH