Administrator
|
Yo dont need to configure your bash_profile before the installation. You need to configure it after your installation to connect to your database.
open it with vi editor.
Set the following environment variables according to your environment:
export ORACLE_HOME=Your ORACLE_HOME path
export ORACLE_SID=Your Db SID
export PATH=$PATH:$ORACLE_HOME/bin
Save the file, relogin (exit and su - oracle maybe) , or you can source the .bash_profile without relogin.. (. .bash_profile) and that's it.
these settings will be enough for you.
|