oracle 10gr2环境变量配置脚本,rhel5测试通过(二)
cho -e '\n'
echo -en '\e[31m Create the DIR for ORACLE_BASE and chown the privilege! \e[0m \n'
mkdir -p $ORACLE_BASE/product/10.2.0/db_1 &&
chown -R oracle.oinstall /u01 &&
##Login as the oracle user and add the following lines at the end of the .bash_profile file:
echo -e '\n'
echo -en '\e[31m Modify the bash_profile of oracle ! \e[0m \n'
cat << EOF >
> /home/oracle/.bash_profile
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1
export ORA_CRS_HOME=/u01/crs/oracle/10gr2/crs
export ORACLE_SID=orcl
export TNS_ADMIN=$ORACLE_HOME/network/admin
export PATH=$ORACLE_HOME/bin:$HOME/bin:$ORA_CRS_HOME/bin:/sbin:$ORA_ASM_HOME:$PATH
EOF