Lsnrctl Error in O8iEE

I have installed O8iEE on Redhat 6.1 ( all options ). The installation went smoothly ( I think ) and completetd. I have created a database and that went fine. After configuring the listener.ora file, I tried to start lsnrctl. Each time I try to start it, I get the following errors:
TNS-12546: TNS: Permission denied
TNS-12560: TNS: Protocol Adapter Error
TNS-00515: Permission Denied
Linux Error: 13 Permission Denied
I have checked the permissions for lsnrctl and it belongs to oracle:dba and is executable. Any help would be appreciated.

I made a mistake in my reply. I earlier posted:
===========================================
" However, I have been logging in as oracle by doing 'su - oracle' from a root logon ... "
... note that some environment variables need to be set, because you simply carry the environment var of 'root' to 'oracle', and the .profile or .bash_profile of 'oracle' is not executed, so that the env. variables of 'oracle' are not present.
===========================================
... but I forgot that we did have the dash in the su command ("su - $ORA_OWNER" instead of "su $ORA_OWNER"). Therefore, when this happens, the .bash_profile of 'oracle' is actually executed because it performs an actual login, making the shell a login shell.
null

Similar Messages

  • Lsnrctl: error while loading shared libraries: libclntsh.so.9.0:

    Hi
    I copied across an /opt folder from a Redhat 9 server that has Oracle 9.2.0 to a Redhat AS 4. I then set the oracle variables, hoping after that I can get the database up and running. However I get this error, when trying to start the listener or sqlplus:
    lsnrctl: error while loading shared libraries: libclntsh.so.9.0: cannot open shared object file: No such file or directory
    Is this library part of a certain RPM? Where can I get this RPM or this lirary?
    Thanks.

    I copied across an /opt folder from a Redhat 9server that has Oracle 9.2.0 to a Redhat AS 4.
    So you are saying that you copied the whole
    ORACLE_HOME to a new server?? Are you using same
    username/group on new server?? Did you relink the
    binaries after copying it? What is the output of ls
    -l on ORACLE_HOME dir and as what user you are
    running lsnrctl command??
    Daljit SinghYes I copied the folder that has Oracle_Home and datafiles.
    i have created the oracle user.
    How do I relink the binaries?
    I run it as oracle.

  • LSNRCTL ERROR

    Hello,
    I just finished installing Oracle 9i with the OUI, runInstaler.
    I try to lauch a listener:
    LSNRCTL> start LISTENER
    Starting /home/oracle/OraHome2/bin/tnslsnr: please wait...
    TNS-12546: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
    TNS-00516: Permission denied
    Linux Error: 13: Permission denied
    LSNRCTL>
    Any ideas what this is all about ? why it is not working ?
    PT

    Am I missing some post-installation steps, or patches here ?
    PT

  • 8iEE RH6.0 patch err: link errors

    Installed 8.1.5.0.0 ok, then attempted the 8.1.5.0.1 patch, and
    got the following stderr. I'd appreciate any advice, Mike.
    $ ./linux_81501patch_ee.sh > 81501.out
    /u01/app/oracle/product/8.1.5/lib//libclntsh.so: undefined
    reference to `nnflboot'
    collect2: ld returned 1 exit status
    gmake: *** [names] Error 1
    /u01/app/oracle/product/8.1.5/lib//libclntsh.so: undefined
    reference to `nnflboot'
    collect2: ld returned 1 exit status
    gmake: *** [tnslsnr] Error 1
    /u01/app/oracle/product/8.1.5/lib//libclntsh.so: undefined
    reference to `nnflboot'
    collect2: ld returned 1 exit status
    gmake: *** [lsnrctl] Error 1
    /u01/app/oracle/product/8.1.5/lib//libclntsh.so: undefined
    reference to `nnflboot'
    collect2: ld returned 1 exit status
    gmake: *** [sqlplus] Error 1
    mv: sqlplus: No such file or directory
    chmod: /u01/app/oracle/product/8.1.5/bin/sqlplus: No such file or
    directory
    /usr/bin/ld: warning: type and size of dynamic symbol `sskgslgf'
    are not defined
    /u01/app/oracle/product/8.1.5/lib//libclntsh.so: undefined
    reference to `nnflboot'
    collect2: ld returned 1 exit status
    gmake: *** [u01/app/oracle/product/8.1.5/rdbms/lib/svrmgrl]
    Error 1
    /usr/bin/ld: cannot open -lordsdo8: No such file or directory
    collect2: ld returned 1 exit status
    gmake: *** [u01/app/oracle/product/8.1.5/rdbms/lib/oracle] Error
    1
    null

    ghghghghghgh wrote:
    I have a temporary workaround now...
    Wherever I had
    std::string s
    if (s == "abc")I just changed it to
    std::string s
    if (0 == s.compare("abc"))and that works fine.
    except that the next time a developer does this, we'll have this problem all over again.
    And if someone does it on a cots that I don't have source code to, i'll be screwed.So it turned out easier for you to change the code than to use STLport implementation, right?
    ghghghghghgh wrote:
    so I still need a fix...i'll call sun.Please, do.

  • Unable to start Oracle 10g instance on boot time (CentOS)

    Hi all,
    I am trying to automate oracle instance start-up on boot time. I have created /etc/oratab and /etc/init.d/dbora files. Also, all the links for run-levels 2,3,4 are set. My machine boots in run-level 3. While I can start the database manually, after the system has booted, I am not able to automate the instance start-up at boot time. Following is the error, I get:
    oracle: /oracle/bin/lsnrctl: error while loading shared libraries: libclntsh.so.9.0: cannot open shared object file: No such file or directory
    I know that normally this problem occurs due to LD_LIBRARY_PATH variable problem. So, I have set the following in /etc/init.d/dbora file.
    LD_LIBRARY_PATH=$ORACLE_HOME/lib
    export LD_LIBRARY_PATH
    System-config (uname -a):
    Linux centos4-db-us-01 2.6.9-67.ELsmp #1 SMP Fri Nov 16 12:48:03 IST 2007 i686 i686 i386 GNU/Linux
    Any help on this issue is highly appreciated.
    Thanks,
    Varun.

    Here it is:
    <code>
    ORA_HOME=/oracle
    ORA_OWNER=oracle
    export ORA_HOME
    ORACLE_SID=wlctp01
    export ORACLE_SID
    ORACLE_HOME=/oracle
    export ORACLE_HOME
    LD_LIBRARY_PATH=/oracle/lib
    export LD_LIBRARY_PATH
    LD_LIBRARY_PATH_32=$ORACLE_HOME/lib32
    export LD_LIBRARY_PATH_32
    PATH=$ORACLE_HOME/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin
    export PATH
    LD_ASSUME_KERNEL=2.4.19
    export LD_ASSUME_KERNEL
    EDITOR=vi
    export EDITOR
    if [ ! -f $ORA_HOME/bin/dbstart ]
    then
    echo "Oracle startup: cannot start"
    exit
    fi
    case "$1" in
    'start')
    # Start the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    echo "Starting oracle instance."
    su - $ORA_OWNER -c $ORA_HOME/bin/dbstart >> /var/log/oracle
    su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start" >> /var/log/oracle
    'stop')
    # Stop the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    su - $ORA_OWNER -c $ORA_HOME/bin/dbshut >> /var/log/oracle
    su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop" >> /var/log/oracle
    esac
    </code>

  • TNS-01151: Missing listener name - APPS_VIS

    Hi,
    We completed the installation of E-BIZ Database and Application onto separate VMs via Oracle's eDelivery templates. Both new VMs are up and running per the OVM Manager.
    However, we are not able to connect to the eBusiness Application. Per the e-Business Suite Rapid Install guide, we should be able to verify installation by accessing:
    http://<host name>.<domain name>:<HTTP port>/OA_HTML/AppsLogin
    We receive a HTTP Internal Error when trying to access this.
    Numerous verification steps have been performed including:
    - Testing network connectivity (ping) between APP VM and DB VM using the hostname
    - Checking that the tnslsnr on DB VM is listening on port 1521, which is what was also configured for APP VM
    - Checking that the httpd on APP VM is listening on port 8000
    I am unable to run lsnrctl to check the status - how should my profile be set to be able to run this as I receive: lsnrctl: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    I have also included adalnctl.txt log from the E-BIZ Application Server. I'm not sure whether the LISTENER.ORA on the APP or DB server should be updated. And if so what should it be updated with?
    02/15/10-13:22:33 :: You are running adalnctl.sh version 120.3
    LSNRCTL for Linux: Version 10.1.0.5.0 - Production on 15-FEB-2010 13:22:33
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    TNS-01101: Could not find service name APPS_VIS
    02/15/10-13:22:34 :: adalnctl.sh: Starting listener process APPS_VIS.
    LSNRCTL for Linux: Version 10.1.0.5.0 - Production on 15-FEB-2010 13:22:34
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Starting /u01/E-BIZ/12.1.1/VIS/apps/tech_st/10.1.2/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.1.0.5.0 - Production
    Log messages written to /u01/E-BIZ/12.1.1/VIS/apps/tech_st/10.1.2/network/log/apps_vis.log
    TNS-01151: Missing listener name, APPS_VIS, in LISTENER.ORA
    Listener failed to start. See the error message(s) above...
    Thanks in advance.
    Regards,
    Martin

    Just a follow-up to this thread. We have now been able to start and successfully login to the e-Business Suite.
    The source of the problem was in the installation of the e-Business Suite (via template) - it previously never completed successfully due to:
    1) DNS - No DNS has been setup with the new virtual hosts as this is simply a prototyping activity. We found that it initiates connection with DB host during installation and will not complete successfully if one is not found. Furthermore, the /etc/hosts file is wiped of existing entries and replaced just with the host of the e-Business application server everytime ebiz_1211_reconfig.sh is run. Workaround is to login to the host during the reconfiguration and update the /etc/hosts file just after it instantiates the static IP address
    2) Apps Password - The application could not startup as it was connecting to the database with a locked out user account. It uses the 'app' user to login to the DB - hence the apps password set during the e-Business application installation must correlate with the app user on the database - in this instance we kept it as apps/apps
    After resolving the above issues we are able to connect through the web URL to e-Business Suite.
    My next question is, assuming our database instance is called 'VIS', why is adalnctl trying to look for APPS_VIS in the listener.ora? I read
    Thanks.

  • Issue to start the DB

    Hi,
    I finished my EBS R12 setup. Can you please advise to this below I've got?
    [root@hpi5 bin]# pwd
    /home/oracle/db/tech_st/11.1.0/bin
    [root@hpi5 bin]# ./lsnrctl
    ./lsnrctl: error while loading shared libraries: /home/oracle/db/tech_st/11.1.0/lib/libnnz11.so: cannot restore segment prot after reloc: Permission denied
    Many Thanks & Best Regards,
    HuaMin
    Edited by: HuaMin Chen on Jun 8, 2012 12:05 PM

    What is your OS?
    Please see these docs.
    ./sqlplus: error on libnnz11.so: cannot restore segment prot after reloc [ID 454196.1]
    Requirements for Installing Oracle 11gR2 RDBMS on RHEL (and OEL) 5 on 32-bit x86 [ID 880936.1]
    How to Check whether SELinux is Enabled or Disabled [ID 432988.1]
    How to Disable or set SELinux to Permissive mode [ID 457458.1]
    Thanks,
    Hussein

  • Copying oracle software

    Hi,
    I wish to clone Oracle software 10g to different node with same OS and use it there. What additional manual steps do I need to perform to have the valid Oracle home on Red Hat (oratab,orainventory).
    Regards

    Hi,
    I have used Cloning OH on Linux x86-64 and everything passed regularly, but I have now one problem.
    I always get the next messages when try to start sqlplus or lsnrct utility.
    sqlplus: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    [oraprod@mihrmsdbTEST ~]$ lsnrctl status
    lsnrctl: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    [oraprod@mihrmsdbTEST ~]$ lsnrctl status
    lsnrctl: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    Some problem with packages or something else.
    Regards,
    Dragan

  • Error in lsnrctl when starting automatic

    Hi,
    I'm having problem when i try to start listener by root during
    the boot. when i start by Oracle ok, when i try to start the
    listener by root, i receive an error: "su - ora805 -c "lsnrctl
    start" ....
    I tried to run the .bash_profile before start the lsnrctl
    command, and the error persist.
    Could you help me?
    Thanks,
    null

    Andre Luis Cardoso (guest) wrote:
    : Marcio Montenegro (guest) wrote:
    : : Andre Luis Cardoso (guest) wrote:
    : : : Hi,
    : : : I'm having problem when i try to start listener by root
    : during
    : : : the boot. when i start by Oracle ok, when i try to start
    the
    : : : listener by root, i receive an error: "su - ora805 -c
    : "lsnrctl
    : : : start" ....
    : : : I tried to run the .bash_profile before start the lsnrctl
    : : : command, and the error persist.
    : : : Could you help me?
    : : : Thanks,
    : : Try :
    : : . `ora805/.bash_profile in your script
    : I have tried this, and it didn't work.
    : And the most interesting is that with the svrmgrl it works.
    : Do you have any ideia?
    Assuming that "ora805" is the owner of oracle. Make sure that
    you export the ORACLE_SID equal to your instance and also make
    sure you execute ". /usr/local/bin/oraenv" inside the
    .bash_profile. Once you have done this, your command would look
    like this: "su - ora805 -c '$ORACLE_HOME/bin/lsnrctl start'".
    This works under RH5.2. It should also work under RH 6.0.
    Good Luck
    Javier
    null

  • Error while starting LSNRCTL

    Hi,
    I got following error while starting Oracle 9.2.0.4 on Solaris...
    Message 1053 not found; No message file for product=network, facility=TNSTNS-12541: Message 12541 not found; No message file for product=network, facility=TNS
    TNS-12560: Message 12560 not found; No message file for product=network, facility=TNS
    Can anyone suggest why?
    thx.

    If those env variables are not set so put them into
    the .profile file but those values are going to be
    accord to your enviroment
    ORACLE_BASE=/DISK1/ORA_HOME9 export ORACLE_BASE
    ORACLE_HOME=/DISK1/ORA_HOME9 export ORACLE_HOME
    LISTENER=$ORACLE_HOME/bin/lsnrctl export LISTENER
    ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data export ORA_NLS33
    TNS_ADMIN=$ORACLE_HOME/network/admin export TNS_ADMIN
    PATH=/usr/local/bin:/usr/bin:/usr/X11R6/bin:/bin:/usr/games:/opt/kde3/bin:/usr/lib/java/jre/bin:/DISK1/ORA_HOME9/bin:.
    Joel P�rez

  • Lsnrctl start/stop "message not found" errors

    When I installed 10g I selected a global database name of 'orcl.clearbean.com' and a sid of 'dev1'. Below are my environment variables, tnsnames.ora file and listener.ora file. I can connect and use the database, but I am getting errors messages when I do a lsnrctl stop/start. I am running Oracle and Apache together on a server running Fedora Core 4 (linux). Any help would be greatly appreciated.
    Supporting information:
    [oracle@emerson ~]$ env | grep ORA
    ORACLE_SID=dev1
    ORACLE_BASE=/u01/app/oracle
    ORACLE_TERM=xterm
    ORACLE_HOME=/u01/app/oracle/product/10.1.0/db_1
    [oracle@emerson ~]$ cat $ORACLE_HOME/network/admin/tnsnames.ora
    # tnsnames.ora Network Configuration File: /u01/app/oracle/product/10.1.0/db_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = emerson.clearbean.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl.clearbean.com)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    [oracle@emerson ~]$ cat $ORACLE_HOME/network/admin/listener.ora
    # listener.ora Network Configuration File: /u01/app/oracle/product/10.1.0/db_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/product/10.1.0/db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = emerson.clearbean.com)(PORT = 1521))
    [oracle@emerson ~]$ lsnrctl stop
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 07-OCT-2005 01:19:22
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Message 1053 not found; No message file for product=network, facility=TNSTNS-12541: Message 12541 not found; No message file for product=network, facility=TNS
    TNS-12560: Message 12560 not found; No message file for product=network, facility=TNS
    TNS-00511: Message 511 not found; No message file for product=network, facility=TNS
    Linux Error: 2: No such file or directory
    Message 1053 not found; No message file for product=network, facility=TNSTNS-12541: Message 12541 not found; No message file for product=network, facility=TNS
    TNS-12560: Message 12560 not found; No message file for product=network, facility=TNS
    TNS-00511: Message 511 not found; No message file for product=network, facility=TNS
    Linux Error: 111: Connection refused
    [oracle@emerson ~]$ lsnrctl start
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 07-OCT-2005 01:19:30
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Message 1070 not found; No message file for product=network, facility=TNSTNSLSNR for Linux: Version 10.1.0.2.0 - Production
    Message 459 not found; No message file for product=network, facility=NL
    Message 279 not found; No message file for product=network, facility=NL
    Message 1073 not found; No message file for product=network, facility=TNSMessage 1073 not found; No message file for product=network, facility=TNS
    Message 1053 not found; No message file for product=network, facility=TNSMessage 1020 not found; No message file for product=network, facility=TNSMessage 1021 not found; No message file for product=network, facility=TNSMessage 1022 not found; No message file for product=network, facility=TNSMessage 1023 not found; No message file for product=network, facility=TNSMessage 1026 not found; No message file for product=network, facility=TNSMessage 1034 not found; No message file for product=network, facility=TNSMessage 1024 not found; No message file for product=network, facility=TNSMessage 1025 not found; No message file for product=network, facility=TNSMessage 1040 not found; No message file for product=network, facility=TNSMessage 1033 not found; No message file for product=network, facility=TNSMessage 1028 not found; No message file for product=network, facility=TNSMessage 1415 not found; No message file for product=network, facility=TNS Message 1050 not found; No message file for product=network, facility=TNS
    Message 1050 not found; No message file for product=network, facility=TNS
    Message 1029 not found; No message file for product=network, facility=TNSMessage 1411 not found; No message file for product=network, facility=TNS
    Message 1408 not found; No message file for product=network, facility=TNS
    Message 1052 not found; No message file for product=network, facility=TNS[oracle@emerson ~]$

    Thx for the feedback; however after defining TNS_ADMIN and turning of the firewall I am still getting the message errors. Any other suggestions?
    [oracle@emerson ~]$ ls $ORACLE_HOME
    admin emerson.clearbean.com_dev1 ldap oraInst.loc sqlj
    assistants flash_recovery_area lib ord sqlplus
    bin has md oui srvm
    cdata hs mesg owm sysman
    cfgtoollogs install mgw perl uix
    config install.platform network plsql ultrasearch
    css inventory nls precomp wwg
    ctx javavm oc4j racg xdk
    dbs jdbc olap rdbms
    demo jdk OPatch relnotes
    diagnostics jlib opmn root.sh
    dm jre oracore slax
    [oracle@emerson ~]$ ls $TNS_ADMIN
    listener.ora samples sqlnet.ora tnsnames.ora.orig
    listener.ora.orig shrept.lst tnsnames.ora
    [oracle@emerson ~]$ lsnrctl stop
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 07-OCT-2005 22:43:44
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Message 1053 not found; No message file for product=network, facility=TNSMessage 1052 not found; No message file for product=network, facility=TNS[oracle@emerson ~]$ lsnrctl start
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 07-OCT-2005 22:43:51
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Message 1070 not found; No message file for product=network, facility=TNSTNSLSNR for Linux: Version 10.1.0.2.0 - Production
    Message 459 not found; No message file for product=network, facility=NL
    Message 279 not found; No message file for product=network, facility=NL
    Message 1073 not found; No message file for product=network, facility=TNSMessage 1073 not found; No message file for product=network, facility=TNS
    Message 1053 not found; No message file for product=network, facility=TNSMessage 1020 not found; No message file for product=network, facility=TNSMessage 1021 not found; No message file for product=network, facility=TNSMessage 1022 not found; No message file for product=network, facility=TNSMessage 1023 not found; No message file for product=network, facility=TNSMessage 1026 not found; No message file for product=network, facility=TNSMessage 1034 not found; No message file for product=network, facility=TNSMessage 1024 not found; No message file for product=network, facility=TNSMessage 1025 not found; No message file for product=network, facility=TNSMessage 1040 not found; No message file for product=network, facility=TNSMessage 1033 not found; No message file for product=network, facility=TNSMessage 1028 not found; No message file for product=network, facility=TNSMessage 1415 not found; No message file for product=network, facility=TNS Message 1050 not found; No message file for product=network, facility=TNS
    Message 1050 not found; No message file for product=network, facility=TNS
    Message 1029 not found; No message file for product=network, facility=TNSMessage 1411 not found; No message file for product=network, facility=TNS
    Message 1408 not found; No message file for product=network, facility=TNS
    Message 1052 not found; No message file for product=network, facility=TNS[oracle@emerson ~]$

  • Ld.so.1: lsnrctl: fatal: relocation error: lsnrctl: symbol nngrsmd symbol

    ld.so.1: lsnrctl: fatal: relocation error: file /u05/oradev/devdb/8.1.7/bin/lsnrctl: symbol nngrsmd: referenced symbol not found
    Hi,
    i tried to start the listener
    database version: 8.1.7.4 @ sun solaris sparc
    this instance is working, down the system yesterday.
    as we tried to bring up, it shows the following error
    Looking the valuable to make up this instance
    ld.so.1: lsnrctl: fatal: relocation error: file /u05/oradev/devdb/8.1.7/bin/lsnrctl: symbol nngrsmd: referenced symbol not found
    Killed
    advanced thanks for your time and vaulable reply
    awaiting for your reply
    Thanks
    regards
    selvan
    [email protected]

    It's not related to SQL or PL/SQL at all (apart from they are all part of Oracle databases).
    You should try the Database General forum: General Database Discussions

  • Error in lsnrctl

    when I issue 'lsnrctl dbsnmp_start', following msg is displayed:
    Failed to initialize nl component, error=280
    What is this error? Any idea how to solve?
    Thanks.
    Tanmoy.

    Andre Luis Cardoso (guest) wrote:
    : Marcio Montenegro (guest) wrote:
    : : Andre Luis Cardoso (guest) wrote:
    : : : Hi,
    : : : I'm having problem when i try to start listener by root
    : during
    : : : the boot. when i start by Oracle ok, when i try to start
    the
    : : : listener by root, i receive an error: "su - ora805 -c
    : "lsnrctl
    : : : start" ....
    : : : I tried to run the .bash_profile before start the lsnrctl
    : : : command, and the error persist.
    : : : Could you help me?
    : : : Thanks,
    : : Try :
    : : . `ora805/.bash_profile in your script
    : I have tried this, and it didn't work.
    : And the most interesting is that with the svrmgrl it works.
    : Do you have any ideia?
    Assuming that "ora805" is the owner of oracle. Make sure that
    you export the ORACLE_SID equal to your instance and also make
    sure you execute ". /usr/local/bin/oraenv" inside the
    .bash_profile. Once you have done this, your command would look
    like this: "su - ora805 -c '$ORACLE_HOME/bin/lsnrctl start'".
    This works under RH5.2. It should also work under RH 6.0.
    Good Luck
    Javier
    null

  • RAC - lsnrctl 12541 "error"

    Hello, I'm having a strange problem with the listeners in a 2 node (eosgospdba01 and eosgospdba02) configuration.
    ps -ef | grep LIST on eosgospdba01 returns:
    oracle 29420 1 0 Sep23 ? 00:00:00 /opt/oracle/product/10.2.0/db/bin/tnslsnr LISTENER_EOSGOSPDBA01 -inherit
    ps -ef | grep LIST on eosgospdba02 returns:
    oracle 615 1 0 Sep23 ? 00:00:00 /opt/oracle/product/10.2.0/db/bin/tnslsnr LISTENER_EOSGOSPDBA02 -inherit
    lsnrctl status on eosgospdba01 returns:
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER_EOSGOSPDBA01
    lsnrctl status on eosgospdba02 returns:
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    lsnrctl status LISTENER_EOSGOSPDBA01 on eosgospdba01 returns:
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=pdba01-vip)(PORT=1521)(IP=FIRST)))
    STATUS of the LISTENER
    Alias LISTENER_EOSGOSPDBA01
    lsnrctl status LISTENER_EOSGOSPDBA02 on eosgospdba02 returns:
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=pdba02-vip)(PORT=1521)(IP=FIRST)))
    STATUS of the LISTENER
    Alias LISTENER_EOSGOSPDBA02
    listener.ora on esogospdba01 contains:
    SID_LIST_LISTENER_EOSGOSPDBA01 =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /opt/oracle/product/10.2.0/db)
    (PROGRAM = extproc)
    LISTENER_EOSGOSPDBA01 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = pdba01-vip)(PORT = 1521)(IP = FIRST))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)(IP = FIRST))
    listener.ora on esogospdba01 contains:
    SID_LIST_LISTENER_EOSGOSPDBA02 =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /opt/oracle/product/10.2.0/db)
    (PROGRAM = extproc)
    LISTENER_EOSGOSPDBA02 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = pdba02-vip)(PORT = 1521)(IP = FIRST))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)(IP = FIRST))
    I hope that someone can throw some light onto this problem, because I have to stop and start the listener on eosgospdba02 to make dbca work correctly.
    Thanks in advance
    Henrik
    Edited by: user1734453 on 2008-09-25 02:09

    These do not look like fully formed .ora files from a 10gR2 RAC cluster to me. Take a look at the demo entries here:
    http://www.psoug.org/reference/rac.html
    If Oracle is telling you there is no listener then there is no listener that corresponds with the ORACLE_HOME and ORACLE_SID in the environment.
    Start there and then enable tracing.
    Your sqlnet.ora file should like contain an entry similar to the following until you debug the problem:
    TNSPING.TRACE_LEVEL=admin
    TNSPING.TRACE_DIRECTORY=<a file system directory path and name>

  • Lsnrctl status errors

    I get the following, what's wrong?:
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 18-FEB-2007 11:11:29
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=elvberg.com)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused

    Hi ,
    Is there any firewall activated.....("Linux Error: 111: Connection refused "). If so , configure it .... accordingly.....Refer to the on-line Oracle doc...
    Regards,
    Simon

Maybe you are looking for

  • TS1506 My attachment symbol is not visible when I am sending an email. How do I get it back?

    Attachment option is not visible when sending an email through aol.com.

  • Magnetic Gift Card Swipe + CF Form

    Hey everyone! I got one for you - possible challange? Maybe it cant be done? I dont know. Basically I am trying to setup a test application so that when a plastic magnetic gift card (that I encoded) is swipped with a magnetic card reader - I want it

  • Time Capsule - Network Error when copying files

    Hi I'm trying to copy files over to my Time Capsule, the drive is recognised and I can access it, and create folders inside it, but as soon as I start copying files, it tries to copy and sometimes copies 1 or 2 files and then an error message pops up

  • JMF an MP3 streaming

    Hi, I tried to write an JMF Plugin for an MP3 audio stream. The plugin should buffer the compressed MP3 data, but extending the AVReceive2.java with a plugin did not send any output to the player. Would someone please help me with a code snapshot? An

  • Reprogram "Chatanswer" button in pop-up

    Hello, Is it possible to access the Cisco code of the Jabber pop-up screen to reprogram the "Chatanswer" button that appears next to the green accept and red decline button when you receive a call??? I have no interest of doing this myself but I want