DBAsupport.com Forums - Powered by vBulletin
Page 2 of 2 FirstFirst 12
Results 11 to 14 of 14

Thread: No Listener

  1. #11
    Join Date
    May 2001
    Posts
    41

    No listener

    The PATH in the Env. doesn't include the Oracle_home.
    How to update the env and add it to .profile? and thanks for all your help. I'll post the result.

  2. #12
    Join Date
    Oct 2000
    Location
    Saskatoon, SK, Canada
    Posts
    3,925
    In your .profile say

    ORACLE_HOME=/path until the product version
    export ORACLE_HOME

    PATH= $ORACLE_HOME/bin:$PATH
    export PATH

    LD_LIBRARY_PATH = $ORACLE_HOME/lib:$ORACLE_HOME/network/lib
    export LD_LIBRARY_PATH


    eg:

    ORACLE_HOME=/usr/local/oracle/app/oracle/product/9.0.1 <-- Directory under which you have installed the binary
    export ORACLE_HOME

    PATH = $ORACLE_HOME/bin:$PATH
    export PATH

    LD_LIBRARY_PATH = $ORACLE_HOME/lib:$ORACLE_HOME/network/lib
    export LD_LIBRARY_PATH


    To get the changes activated, you got to logout and log in.

    BTW, what is the shell you are using? If its bash, then there would be a bash profile, if it were to be c-shell, then you have to put the things in the .login file, with setenv

    C - Shell

    setenv ORACLE_HOME /binary installation path
    setenv PATH $ORACLE_HOME/bin:$PATH
    setenv LD_LIBRARY_PATH $ORACLE_HOME/lib:$ORACLE_HOME/network/lib

    and do ./source

    IF you still have problems, please post/send me your env setup and I can take a look into it.

    Sam
    Thanx
    Sam



    Life is a journey, not a destination!


  3. #13
    Join Date
    May 2001
    Posts
    41

    No Listener

    Sam,

    I'm going to re-install, I can't find my binary at all.
    My Oracle_Home Path doesn't have any product ver.


    Thanks to everybody for the reply.

  4. #14
    Join Date
    Oct 2000
    Location
    Saskatoon, SK, Canada
    Posts
    3,925
    You will not find the product version in the directory path unless and otherwise you had mentioned it on the universal installer at the time of installation.

    Sam
    Thanx
    Sam



    Life is a journey, not a destination!


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width