Srvctl start listener - ERROR

Hi All,
   We need at add new listener with new port to cluster, while adding iam getting this error
DB VERSION : 11.2.0.3
from ORACLE_HOME/bin directory
[oracle@cisssna01sora81 bin]$ ./srvctl add listener -l LISTENER_TEST  -p 1559 -o /app/oracle/product/11.2.0/dbhome_1
PRCN-2061 : Failed to add listener ora.LISTENER_TEST.lsnr
PRCN-2065 : Port(s) 1559 are not available on the nodes given
PRCN-2067 : Port 1559 is not available across node(s) "node1"
Please advise me on this.

Same link i attached you the other day:
How to Configure A Second Listener on a Separate Network in 11.2 Grid Infrastructure (Doc ID 1063571.1)
why didn't you read it?

Similar Messages

  • Srvctl start listener -n rac1 gives CRS-1028 and CRS-0223

    Boot up 2 linux 10.2.0.1.0 RAC nodes.
    everything starts except listeners
    srvctl start listener -n rac1
    or
    srvctl start listener -n rac2
    gives
    CRS-1028
    CRS-0223
    However, if you start listeners manually, using
    lsnrctl start listener_rac1
    or
    lsnrctl start listener_rac2
    they start right up. Moreover, once you have started them manually, the srvctl start listener commands now work, both stopping and starting the listeners with srvctl now works. However, when reboot systems, again srvctl must be "primed" for starting listener by doing one "manual" startup of listener.
    Any thoughts on what is causing this behavior?
    Thanks!

    Alan, thanks - excellent advice. However, I just ended up redoing the entire install and this of course fixed the problem :-)
    Thanks for your reply, Gil
    PS also, btw I use the crsstat script instead of the crs_stat for better formatting, i.e. this script (which I named crsstat) lives in $ORA_CRS_HOME/bin. Also, note I am not the author of this script, I downloaded it from Metalink:
    #!/usr/bin/ksh
    # Sample 10g CRS resource status query script
    # Description:
    # - Returns formatted version of crs_stat -t, in tabular
    # format, with the complete rsc names and filtering keywords
    # - The argument, $RSC_KEY, is optional and if passed to the script, will
    # limit the output to HA resources whose names match $RSC_KEY.
    # Requirements:
    # - $ORA_CRS_HOME should be set in your environment
    RSC_KEY=$1
    QSTAT=-u
    AWK=/usr/bin/awk # if not available use /usr/bin/awk
    # Table header:echo ""
    $AWK \
    'BEGIN {printf "%-45s %-10s %-18s\n", "HA Resource", "Target", "State";
              printf "%-45s %-10s %-18s\n", "-----------", "------", "-----";}'
    # Table body:
    $ORA_CRS_HOME/bin/crs_stat $QSTAT | $AWK \
    'BEGIN { FS="="; state = 0; }
    $1~/NAME/ && $2~/'$RSC_KEY'/ {appname = $2; state=1};
    state == 0 {next;}
    $1~/TARGET/ && state == 1 {apptarget = $2; state=2;}
    $1~/STATE/ && state == 2 {appstate = $2; state=3;}
    state == 3 {printf "%-45s %-10s %-18s\n", appname, apptarget, appstate; state=0;}'

  • Srvctl start listener

    Dear,
    the default for listener was in a RAC environment.
    $ORACLE_HOME/network/admin
    question:
    i have moved the listener to a different location.
    $ORACLE_HOME/network/admin/DB1
    how can i change this location in CRS
    which command should i use.
    Thanks in advance!
    Regards,

    Hi,
    I try simulate the same scenario on my test env...
    carpa:/home/ora10g> cd $ORACLE_HOME/network/admin/
    carpa:/u01/app/oracle/product/10.2.0/network/admin> mkdir teste
    carpa:/u01/app/oracle/product/10.2.0/network/admin> mv listener.ora teste/
    carpa:/u01/app/oracle/product/10.2.0/network/admin> echo $TNS_ADMIN
    /u01/app/oracle/product/10.2.0/network/admin
    carpa:/u01/app/oracle/product/10.2.0/network/admin> export TNS_ADMIN=/u01/app/oracle/product/10.2.0/network/admin/teste
    carpa:/u01/app/oracle/product/10.2.0/network/admin> echo $TNS_ADMIN
    /u01/app/oracle/product/10.2.0/network/admin/teste
    carpa:/u01/app/oracle/product/10.2.0/network/admin> lsnrctl start
    LSNRCTL for Linux: Version 10.2.0.4.0 - Production on 13-APR-2009 14:36:26
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Starting /u01/app/oracle/product/10.2.0/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.2.0.4.0 - Production
    System parameter file is /u01/app/oracle/product/10.2.0/network/admin/teste/listener.ora
    Log messages written to /u01/app/oracle/product/10.2.0/network/log/listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.22.9)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.22.9)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.4.0 - Production
    Start Date 13-APR-2009 14:36:26
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u01/app/oracle/product/10.2.0/network/admin/teste/listener.ora
    Listener Log File /u01/app/oracle/product/10.2.0/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.22.9)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "dsrj01.myjob.com" has 1 instance(s).
    Instance "dsrj01", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    carpa:/u01/app/oracle/product/10.2.0/network/admin> lsnrctl stop
    LSNRCTL for Linux: Version 10.2.0.4.0 - Production on 13-APR-2009 14:36:37
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.22.9)(PORT=1521)))
    The command completed successfully
    carpa:/u01/app/oracle/product/10.2.0/network/admin> export TNS_ADMIN=/u01/app/oracle/product/10.2.0/network/admin
    carpa:/u01/app/oracle/product/10.2.0/network/admin> echo $TNS_ADMIN
    /u01/app/oracle/product/10.2.0/network/admin
    carpa:/u01/app/oracle/product/10.2.0/network/admin> lsnrctl start
    LSNRCTL for Linux: Version 10.2.0.4.0 - Production on 13-APR-2009 14:36:52
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Starting /u01/app/oracle/product/10.2.0/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.2.0.4.0 - Production
    Log messages written to /u01/app/oracle/product/10.2.0/network/log/listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=carpa)(PORT=1521)))
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.4.0 - Production
    Start Date 13-APR-2009 14:36:52
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Log File /u01/app/oracle/product/10.2.0/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=carpa)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    This is a listener without listener.ora, this is a default configuration, it happened cause
    we move listener.ora from new location, now listener.ora is under $ORACLE_HOME/network/admin/teste/ ... Do you remeber?
    Regards,
    Rodrigo Mufalani
    http://mufalani.blogspot.com

  • Srvctl status listener not wkng for 10g DB on 11g cluster

    Hi Friends,
    I am using Oracle 11g (11.2.0.2) cluster and on which 10g database(10.2.0.2) database and listener is registered.
    I have a problem in using srvctl (10g) to check the listener status.It's throwing error but i am able to start and stop listsner service using srvctl:
    bash-3.00$ which srvctl
    /oraho/ora10g/product/10.2.0/db_1/bin/srvctl
    bash-3.00$
    bash-3.00$ ps -ef | grep tns
    grid 4528 1 0 May 31 ? 0:13 /orapdpw/app/oracle/product/11.2.0/grid/bin/tnslsnr LISTENER_SCAN3 -inherit
    grid 4537 1 0 May 31 ? 0:13 /orapdpw/app/oracle/product/11.2.0/grid/bin/tnslsnr LISTENER_SCAN2 -inherit
    grid 4531 1 0 May 31 ? 0:13 /orapdpw/app/oracle/product/11.2.0/grid/bin/tnslsnr LISTENER -inherit
    oraho 11336 1 0 15:59:05 ? 0:00 /oraho/ora10g/product/10.2.0/db_1/bin/tnslsnr HOLISTENER_JXR12DB1 -inherit
    bash-3.00$
    bash-3.00$
    bash-3.00$ srvctl status listener -l HOLISTENER_JXR12DB1
    Usage: srvctl <command> <object> [<options>]
    bash-3.00$
    bash-3.00$ srvctl status listener -l HOLISTENER_JXR12DB1 -n JXR12DB1
    Usage: srvctl <command> <object> [<options>]
    I even tried as grid user but same error
    But i could able to use
    srvctl start listener -l HOLISTENER_JXR12DB1 -n JXR12DB1 and
    srvctl stop listener -l HOLISTENER_JXR12DB1 -n JXR12DB1
    I could use the srvctl status for DB and it's working fine
    bash-3.00$ srvctl status database -d HOTEST
    Instance HOTEST1 is running on node jxr12db1
    Instance HOTEST2 is running on node jxr12db2
    Please let me know the reason
    Regards,
    DB

    Hello DB
    10g syntax does not support "srvctl status listener". See this URL:
    http://docs.oracle.com/cd/B19306_01/rac.102/b14197/srvctladmin.htm#i1009882
    Cheers
    Riyaj Shamsudeen
    Blog: http://orainternals.wordpress.com/
    Oracle ACE Director and OakTable member http://www.oaktable.com
    Advanced RAC seminar | http://www.orainternals.com/services/training/advanced-rac-training/

  • Error starting listener on single node in RAC..Error listening on: (DESCRIP

    LSNRCTL> start LISTENER_CORPNG04
    Starting /ora00/app/oracle/product/11/db1/bin/tnslsnr: please wait...
    TNSLSNR for HPUX: Version 11.1.0.7.0 - Production
    System parameter file is /ora00/app/oracle/product/11/db1/network/admin/listener.ora
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=vir_corpng04)(PORT=1521)(IP=FIRST)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    HPUX Error: 227: Can't assign requested address
    Listener failed to start. See the error message(s) above...
    LSNRCTL>
    Plz help its production system
    Thanks in Advance
    Gagan

    Hello,s
    First of all, check the status of all resources by using crs_stat -t
    Check if your VIP resource is indeed up and running on the node where you want to start the listener. As listener is depending upon this VIP address, it is needed to be up on the node where listener is configured. If this is the case then relocate the vip back to the system by using either of the following commands
    1. crs_relocate <vip_resource_name>
    OR
    2. srvctl start nodeapps -n <hostname>
    listener should be automatically up once crs relocates back the vip to the system.
    If vip is already running fine on the system then check for your listener configuration as you check in normal systems.
    Lalit Verma
    [http://sites.google.com/site/racinsights1]

  • Srvctl start database -d dbname error tns lost contact

    hi,
    i am facing error while starting the databse by using srvctl in single node database.
    srvctl status database -d <dbname> is working fine and it is giving output. i am able to start the database manually too.
    srvctl start database -d <dbname>
    PRCR-1133 : Failed to stop database <dbname> and its running services
    PRCR-1132 : Failed to stop resources using a filter
    ORA-12547: TNS:lost contact
    any advice.
    regards
    Suresh J
    Edited by: user11982371 on Apr 20, 2012 6:53 AM

    may i know what you have done before....srvctl start...etc...
    do you have done any changes?
    post your oracle version and OS....
    please find below notes from metalink..it may helpful to you....
    This could be many things but a popular issue is when you have a separate ASM Home and the listener is running out of this home (it was the first home installed). Srvctl needs a TNS_ADMIN alias to the network/admin directory in this home instead of using the default ORACLE_HOME/network/admin for the database you are trying to start. For srvctl to work you must
    srvctl setenv nodeapps -n node -T TNS_ADMIN=full path
    on each node in the cluster.
    You cannot rely on a TNS_ADMIN environment variable.
    See Note 420977.1
    Another cause is non-existent spfile, see Note 732683.1
    source support.oracle.com
    Edited by: dbc001 on Mar 23, 2013 10:55 AM

  • Srvctl start service/stop throwing error ORA-01031: insufficient privileges

    Hi Gurus,
    When i try to start/stop the service getting below error.Please help me troubleshoot it.
    AIX-6.1
    11.2.0.1
    Plato1:/u01/app/11.2.0/grid/network/admin>srvctl start service -d maxcv
    PRCR-1079 : Failed to start resource ora.maxcv.maxcv.svc
    CRS-2680: Clean of 'ora.maxcvuat.svc' on 'Plato1' failed
    CRS-5807: Agent failed to process the message
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    CRS-2680: Clean of 'ora.maxcvuat.svc' on 'Plato1' failed
    Thanks

    SQL> execute dbms_service.start_service('maxcvuat');PL/SQL procedure successfully completed.
    Output from alert.log
    EMNC started with pid=32, OS id=1384660
    2011-09-09 09:32:09.820000 -04:00
    Starting background process CJQ0
    CJQ0 started with pid=53, OS id=1429756
    2011-09-09 09:37:00.698000 -04:00
    Starting background process SMCO
    SMCO started with pid=33, OS id=1687726
    2011-09-09 09:52:59.212000 -04:00
    ALTER SYSTEM SET service_names='maxcvuat' SCOPE=MEMORY SID='maxcv2';
    ~crsctl stat output:
    plato2:/home/grid>crsctl stat res -t
    NAME           TARGET  STATE        SERVER                   STATE_DETAILS
    Local Resources
    ora.CRS.dg
                   OFFLINE OFFLINE      plato1
                   OFFLINE OFFLINE      plato2
    ora.CRS_DATA.dg
                   ONLINE  OFFLINE      plato1
                   ONLINE  ONLINE       plato2
    ora.CRS_DATA1.dg
                   ONLINE  OFFLINE      plato1
                   ONLINE  ONLINE       plato2
    ora.CRS_VDISK.dg
                   OFFLINE OFFLINE      plato1
                   ONLINE  ONLINE       plato2
    ora.LISTENER.lsnr
                   ONLINE  ONLINE       plato1
                   ONLINE  ONLINE       plato2
    ora.maxcv_DATA.dg
                   ONLINE  INTERMEDIATE plato1
                   ONLINE  ONLINE       plato2
    ora.maxcv_REC.dg
                   ONLINE  INTERMEDIATE plato1
                   ONLINE  ONLINE       plato2
    ora.asm
                   ONLINE  OFFLINE      plato1
                   ONLINE  ONLINE       plato2
    ora.eons
                   ONLINE  ONLINE       plato1
                   ONLINE  ONLINE       plato2
    ora.gsd
                   OFFLINE OFFLINE      plato1
                   OFFLINE OFFLINE      plato2
    ora.net1.network
                   ONLINE  ONLINE       plato1
                   ONLINE  ONLINE       plato2
    ora.ons
                   ONLINE  ONLINE       plato1
                   ONLINE  ONLINE       plato2
    Cluster Resources
    ora.LISTENER_SCAN1.lsnr
          1        ONLINE  ONLINE       plato2
    ora.LISTENER_SCAN2.lsnr
          1        ONLINE  ONLINE       plato1
    ora.LISTENER_SCAN3.lsnr
          1        ONLINE  ONLINE       plato1
    ora.plato1.vip
          1        ONLINE  ONLINE       plato1
    ora.plato2.vip
          1        ONLINE  ONLINE       plato2
    ora.maxcv.db
          1        ONLINE  ONLINE       plato2                   Open
          2        ONLINE  ONLINE       plato1                   Open
    ora.maxcv.maxcvuat.svc
          1        OFFLINE UNKNOWN      plato1
          2        OFFLINE UNKNOWN      plato1
    ora.coscv.db
          1        ONLINE  ONLINE       plato1                   Open
          2        ONLINE  ONLINE       plato2                   Open
    ora.coscv.coscvuat.svc
          1        ONLINE  UNKNOWN      plato1
          2        ONLINE  UNKNOWN      plato1
    ora.oc4j
          1        OFFLINE OFFLINE
    ora.scan1.vip
          1        ONLINE  ONLINE       plato2
    ora.scan2.vip
          1        ONLINE  ONLINE       plato1
    ora.scan3.vip
          1        ONLINE  ONLINE       plato1
    plato2:/home/grid>Stopping of database:
    plato2:/home/oracle>srvctl stop database -d maxcv
    PRCD-1124 : Failed to stop database maxcv and its services
    PRCR-1065 : Failed to stop resource (((((NAME STARTS_WITH ora.maxcv.) && (NAME ENDS_WITH .svc)) && (TYPE == ora.service.type)) && ((STATE != OFFLINE) || (TARGET != OFFLINE))) || (((NAME == ora.maxcv.db) && (TYPE == ora.database.type)) && (STATE != OFFLINE)))
    CRS-2680: Clean of 'ora.maxcv.maxcvuat.svc' on 'plato1' failed
    CRS-5807: Agent failed to process the message
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    CRS-2680: Clean of 'ora.maxcv.maxcvuat.svc' on 'plato1' failed
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    CRS-2675: Stop of 'ora.maxcv.db' on 'plato1' failed
    CRS-2680: Clean of 'ora.maxcv.maxcvuat.svc' on 'plato1' failed
    CRS-5807: Agent failed to process the message
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    CRS-2680: Clean of 'ora.maxcv.maxcvuat.svc' on 'plato1' failed
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    CRS-2675: Stop of 'ora.maxcv.db' on 'plato1' failed
    plato2:/home/oracle>ps -ef |grep pmon
    oracle  892946 1818664   0 09:30:35  pts/0  0:00 grep pmon
    grid 1360080       1   0   Sep 06      -  1:23 asm_pmon_+ASM2
    oracle 1376428       1   0   Sep 06      -  1:42 ora_pmon_coscv2
    plato2:/home/oracle>Thanks

  • Listener Error while starting the datbase

    Hello,
    When I am trying to start my database from Enterprise manager I am getting the following listener error,
    Status Failed
    Details ORA-12505: TNS:listener does not currently know of SID given in connect descriptor (DBD ERROR: OCIServerAttach)
    I have tried to stop the listener and restart it from the command prompt but it does not get stopped from there, Please advise.
    Thanks
    Faiz

    The procedure didn't change the listener.ora, listener.ora was just wrong all the time.
    This occurs because you must be restarting the database remotely.
    If you would have restarted the database locally, you would have issued
    set oracle_sid=<....>
    sqlplus ...
    and you would have bypassed the listener
    Also I believe you are using your own program to restart the database probably using the HOST:port:SID syntax, as far as I know, somehow Oracle Enterprise Manager doesn't seem to need the SID.
    Sybrand Bakker
    Senior Oracle DBA

  • How to resolve the problem in jdeveloper903 oc4j starting:JspTagLib listener error

    I just download a jdeveloper903,i hava a problem:
    when i start the oc4j alone,it prompt "JspTagLib listener error:null". Then,After depoly the jsp application with JspTag to oc4j,I found the jsp page can not run,but,the jsp application can run in the
    develope environment.
    how can resolve the problem,help!!Thanks.

    I think you might have better luck asking your question in the JDeveloper forum at:
    http://forums.oracle.com/forums/forum.jsp?id=315684
    later -- Jeff

  • TNS:protocol adapter error while starting Listener created by Oracle SES11.1.2.2 Setup

    I am trying to install Oracle Secure Enterprise Search 11.1.2.2 on Windows 7 64-Bit Enterprise Edition.
    The machine has Oracle Client installed on it. Loopback adapter was configured.
    The setup created a Listener named LISTENER and SID is ASUSES.
    I am getting the following error when trying to start the Listener.
    LSNRCTL> start LISTENER
    TNS-01106: Listener using listener name LISTENER has already been started
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=01HW536484.India.TCS.com
    )(PORT=1521)))
    TNS-12537: TNS:connection closed
    TNS-12560: TNS:protocol adapter error
      TNS-00507: Connection closed
    Content of listener.ora
    # listener.ora Network Configuration File: D:\ses\seshome\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = TCP)(HOST = 01HW536484.India.TCS.com)(PORT = 1521))
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    Content of tnsnames.ora
    # tnsnames.ora Network Configuration File: D:\ses\seshome\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ASUSES =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = 01HW536484.India.TCS.com)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = ASUSES.01HW536484.India.TCS.com)
    Content of sqlnet.ora
    # sqlnet.ora Network Configuration File: D:\ses\seshome\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)
    tcp.invited_nodes=(01HW536484,127.0.0.1)
    tcp.validnode_checking=yes
    sqlnet.expire_time=10
    tcp.invited_nodes=(01HW536484,127.0.0.1)
    tcp.validnode_checking=yes
    sqlnet.expire_time=10
    Kindly let me know what should be done.

    i have done that. i copied the tnsnames.ora, sqlnet.ora, listener.ora files from the c:>oracle-home\network\admin folder into oracle_devhome\network\admin folder. i have also set the environment variable oracle_sid=skoolman. skoolman is my sid as you can see on the tnsnames.ora. but the error massage still comes up as soon as i run forms from the forms builder environment.
    but as i said i am able to connect to the database with my user name and pass word from within the forms builder environment to access my tables and create data blocks etc but as soon as i run the form through internet explorer the forms servlet boots up and the error massage ora-12560 tns protocol adapter error pops up.
    thanks guys for your heip. please i need more solutions

  • Reply to : TNS:protocol adapter error while starting Listener created by Oracle SES11.1.2.2 Setup

    To answer the post from Manwendra Jun 20, 2013 7:17 AM
    " TNS:protocol adapter error while starting Listener created by Oracle SES11.1.2.2 Setup "
    https://community.oracle.com/message/11077982#11077982
    Hello,
    Probably that you already have the listener up and running from your installation of SES.
    Also, you could check in your Windows Services (from the Control Panel), you'll see that
    there is a service like OraclesesTNSListener up and running.
    If it is the case, then it's probably why it is telling you the message below when trying to start it again:
    TNS-01106: Listener using listener name LISTENER has already been started
    Then, before trying to start the listener, you can check if it is already up by running the command : lsnrctl status
    If you need to shut it down, then you can run the command : lsnrctl stop
    for example, from the command line:
    > set ORACLE_SID=ASUSES
    > set ORACLE_BASE=D:\ses\
    > set ORACLE_HOME=D:\ses\seshome
    > cd %ORACLE_HOME%/bin
    > lsnrctl status            <== this will give you the status of your listener
    > lsnrctl stop              <== this will stop your listener
    > lsnrctl start             <== this will start your listener
    Hope this can help you and others.
    Regards,
    -Stephan

    i have done that. i copied the tnsnames.ora, sqlnet.ora, listener.ora files from the c:>oracle-home\network\admin folder into oracle_devhome\network\admin folder. i have also set the environment variable oracle_sid=skoolman. skoolman is my sid as you can see on the tnsnames.ora. but the error massage still comes up as soon as i run forms from the forms builder environment.
    but as i said i am able to connect to the database with my user name and pass word from within the forms builder environment to access my tables and create data blocks etc but as soon as i run the form through internet explorer the forms servlet boots up and the error massage ora-12560 tns protocol adapter error pops up.
    thanks guys for your heip. please i need more solutions

  • How can resolve the problem in jdeveloper903 oc4j starting:JspTagLib listener error

    when i start oc4j in jdeveloper903,it prompt "JspTagLib listener error:null".
    Then ,after depoly the jsp application with jsptaglib,i found the jsp page can not run.but,the jsp application
    can run in develop environment.
    how can i resolve the problem,Help.
    Thanks.

    I think you might have better luck asking your question in the JDeveloper forum at:
    http://forums.oracle.com/forums/forum.jsp?id=315684
    later -- Jeff

  • Impossible to start a listener: Failed to start service, error 3 TNS-12560

    Hi all,
    I had a database in my machine in 10g.
    I have installed oracle 11.1.0.7 on the same machine.
    So now i have 2 oracle_home.
    With 10g I have a default listener which is running on port 1521.
    I wanted to run an other listener under the 11g oracle home.
    listener.ora:
    # listener.ora Network Configuration File: C:\ora111\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER2 =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = TCP)(HOST = T0009696.corp.gltrade.com)(PORT = 1522))
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    C:\ora111\BIN>lsnrctl start listener2
    LSNRCTL for 32-bit Windows: Version 11.1.0.7.0 - Production on 16-MARS -2010 15:21:19
    Copyright (c) 1991, 2008, Oracle.  All rights reserved.
    Lancement de tnslsnr: Veuillez patienter...
    Failed to start service, error 3.
    TNS-12560: TNS : erreur d'adaptateur de protocole
    TNS-00530: Erreur d'adaptateur de protocoleEven if I stop the 10g listener I can't start the 11g listener. I also tried to start a default listener with 11g (name=listener and port=1521) but I get the same error.
    Please, can someone explain me the reason of such error ?

    C:\ora111\BIN>set
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    ANT_HOME=U:\eclipse\plugins\org.apache.ant_1.7.0.v200706080842
    CLIENTNAME=Console
    CommonProgramFiles=C:\Program Files\Fichiers communs
    COMPUTERNAME=T0009696
    ComSpec=C:\WINDOWS\system32\cmd.exe
    ECLIPSE_HOME=C:\Program Files\Eclipse
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    JAVA_HOME=U:\JDK
    JMS_ADAPTER=ActiveMQJMS
    JMS_SERVERURL=tcp://SRV-JMS:61616
    LOGONSERVER=\\SRV-46-CORP1
    MSDevDir=C:\msdev\Common\MSDev98
    NUMBER_OF_PROCESSORS=2
    ORACLE_HOME=C:\ora111
    oracle_sid=ubix11
    OS=Windows_NT
    Path=C:\ora111\bin;C:\ora111\bin;C:\ora102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Prog
    ram Files\Fichiers communs\Adaptec Shared\System;c:\uti\exew32;c:\Perforce;c:\uti;C:\WINDOWS\system32\WindowsP
    owerShell\v1.0;C:\Sun\SDK\bin;C:\Program Files\EclipsePATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    ;.PSC1
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.PSC1
    PERL5LIB=C:\ora102\perl\lib\5.8.3\MSWin32-x86;C:\ora102\perl\lib\5.8.3;C:\ora102\perl\5.8.3\lib\MSWin32-x86-mu
    lti-thread;C:\ora102\perl\site\5.8.3;C:\ora102\perl\site\5.8.3\lib;C:\ora102\sysman\admin\scripts
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 75 Stepping 2, AuthenticAMD
    PROCESSOR_LEVEL=15
    PROCESSOR_REVISION=4b02
    ProgramFiles=C:\Program Files
    PROMPT=$P$G
    PYDEVHOME=C:\Program Files\Eclipse\plugins\org.python.pydev.debug_1.3.13\pysrc
    SESSIONNAME=Console
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    tns_admin=C:\ora111\network\admin
    UBIXDEV_DRIVE=U
    USERDNSDOMAIN=CORP.GLTRADE.COM
    USERDOMAIN=CORP
    USERNAME=EMB
    UTI=c:\uti
    Vs6CommonDir=c:\msdev
    windir=C:\WINDOWS

  • Listener 10g: Failed to start service, error 0 and TNS-12560

    E:\>set oracle_home
    ORACLE_HOME=f:\oracle\product\10.2.0\db_1
    E:\>set tns_admin
    TNS_ADMIN=f:\oracle\product\10.2.0\db_1\network\admin\PROD_r12db
    E:\>tnsping prod
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 11-MAY-2008 10:26:49
    Copyright (c) 1997, 2005, Oracle. All rights reserved.
    Used parameter files:
    f:\oracle\product\10.2.0\db_1\network\admin\PROD_r12db\sqlnet_ifile.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION= (ADDRESS=(PROTOCOL=tcp)(HOST=r12db.pasi.om)(PORT=1522)) (CONNECT_DATA= (SID=PROD)))
    TNS-12541: TNS:no listener
    E:\>lsnrctl
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 11-MAY-2008 10:26:55
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Welcome to LSNRCTL, type "help" for information.
    LSNRCTL> start
    Starting tnslsnr: please wait...
    Failed to start service, error 0.
    TNS-12560: TNS:protocol adapter error
    LSNRCTL> exit
    E:\>set hostname
    Environment variable hostname not defined
    E:\>set computername
    COMPUTERNAME=R12DB

    No. Under windows services, unable to start. Getting the message as follows ..
    .. Service started and then stopped. Some services stop automatically if they have no work to do ...
    Actually the error number is 3. 3 means The system cannot find the path specified
    How do we find which path is looked upon when LSNRCTL is starting ...
    Your quick reply will be highly appreciated.

  • SRVCTL START DATABASE FAILS WITH  ORA-00119

    Hi,
    My DB version is 11.2.0.2.3
    I am able to start the DB thorough sqlplus as conventional way.But when I am trying to start using SRVCTL it gives the following errors:
    CRS-5017: The resource action "ora.****.db start" encountered the following error:
    SRVCTL START DATABASE FAILS WITH ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER_local'
    Can you please suggest for any workaround.
    Thanks

    Did you check the TNS_ADMIN? Where does it point to?
    Also check if you have all the network files placed under the directory pointed to by TNS_ADMIN.
    sqlnet.ora
    listener.ora
    tnsnames.ora

Maybe you are looking for

  • IMovie 6 plugins

    Hmm im having trouble finding plugins for iMovie HD 6, and especially for intel. I have looked around and there are a myriad of plugins for different, older versions. Im looking specifically for a blue screen plugin and/or one that will be good for a

  • Backing up an external storage hard drive with time machine

    I have a setup with an external hard drive on which I store photos etc. I also back up my desktop with time machine to a separate external. I want to back up my photo drive to this external through time machine and a tech at the apple store showed me

  • CFMAIL not working online

    I'm trying to send the email from my AOL account... it works fine hosted locally... and doesnt when I upload it to my GoDaddy hosted account... Is there some GoDaddy setting I need to use... or if I have to use a GoDaddy created email address... what

  • N70 should sync - "can't connect" HELP

    I have the latest Mac OS X and the latest iSync 2.3. It should be able to sync with Nokia N70, Apple's website confirms this. However, after I've paired the phone with my iMac, and try to add device to iSync, it finds it but says: "iSync cannot conne

  • MultiThread in drawing?

    Anyone knows how to use MultiThread to draw line, circle etc. at the same time? That is, how can I create MultiThread in paint(graphics d) method? Thanks.