LSNRCTL STOP hang.

When I run the command, 'lsnrctl stop' to stop listerner. The listener stopped well but the command did not end.
I could recognize following error using ktrace.
556 lsnrctl NAMI "/Users/oracle/10g/oracle/lib/libociei.dylib"
556 lsnrctl RET open -1 errno 2 No such file or directory
556 lsnrctl CALL close(0xffffffff)
556 lsnrctl RET close -1 errno 9 Bad file descriptor
556 lsnrctl CALL open(0xbfffc260,0,0)
556 lsnrctl NAMI "/Users/oracle/10g/oracle/rdbms/lib/libociei.dylib"
556 lsnrctl RET open -1 errno 2 No such file or directory
556 lsnrctl CALL close(0xffffffff)
556 lsnrctl RET close -1 errno 9 Bad file descriptor
556 lsnrctl CALL open(0xbfffc280,0,0)
556 lsnrctl NAMI "/libociei.dylib"
556 lsnrctl RET open -1 errno 2 No such file or directory
556 lsnrctl CALL close(0xffffffff)
556 lsnrctl RET close -1 errno 9 Bad file descriptor
556 lsnrctl CALL open(0x4026d0,0,0)
556 lsnrctl NAMI "libociei.dylib"
556 lsnrctl RET open -1 errno 2 No such file or directory
556 lsnrctl CALL close(0xffffffff)
556 lsnrctl RET close -1 errno 9 Bad file descriptor
556 lsnrctl CALL open(0xbfffc270,0,0)
556 lsnrctl NAMI "/Users/oracle/lib/libociei.dylib"
556 lsnrctl RET open -1 errno 2 No such file or directory
556 lsnrctl CALL close(0xffffffff)
556 lsnrctl RET close -1 errno 9 Bad file descriptor
Could not find out the 'libociei.dylib'.
Thanks in advance.

Hi
beforem issuing the lsnrctl stop command try the following:
onsctl start
lsnrctl stop
onsctl stop
This is a known issue and has been on the forum before. I hope it helps
Paul.

Similar Messages

  • How do I get the Converting to Adobe PDF process to stop hanging?

    I installed Adobe Acrobat 8 Professional on a machine running Windows 7 Professional 64bit.  I have tried creating PDFs from MS Office files (using the Acrobat PDFMaker toolbar).  I have also tried printing to Adobe PDF, from within MS office but also elsewhere (e.g. IE, Notepad).  No matter the creation method, I am prompted for a file name and location and then the Acrobat PDFMaker window appears with a taskbar and message "Coverting to Adobe PDF..."  The process hangs there and a print job appears in the Adobe PDF printer with a status of "Error - Printing."  How do I get the process to stop hanging and successfully create PDFs?

    FWIW, a former colleague was also frustrated with this "Error - Printing" hang-up problem, when printing from any app to Adobe PDF, with Acrobat Pro 9.3.0 on a Win7x64 system. I recall forum threads on that issue, with no clear resolution?. What did work on every print job, though, was the two-step method: (a) Print to File with Adobe PDF, then (b) fire up Acrobat Distiller 9 to convert the intermediate .prn Postscript file. (It would seem that Acrotray wasn't functioning properly in a x64 environment?...though it did run as one of the pc startup processes)
    As that two-step method was acceptable for his workflow, he never explored the possibility of getting a fluent one-step PDF creation by upgrading to the highest available v9x version, or beyond.

  • Listener ( lsnrctl ) - stop and start just one instance

    Hey all. I hava a Oracle 9.2 installed over a Linux Red Hat 4.0 64 bits server.
    Some Virtual Machines will connect in some databases installed in my Oracle server. My listener has one instance for each database like this:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = VM01)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM01)
    (SID_DESC =
    (GLOBAL_DBNAME = VM02)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM02)
    (SID_DESC =
    (GLOBAL_DBNAME = VM03)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM03)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = VM01))
    (ADDRESS = (PROTOCOL = IPC)(KEY = VM02))
    (ADDRESS = (PROTOCOL = IPC)(KEY = VM03))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    And my tnsnames:
    VM03 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = VM03)
    VM02 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    (CONNECT_DATA =
    (SID = VM02)
    VM01 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = VM01)
    I need to start and stop just one instance (VM01 or VM02 or VM03). I really can't stop all instances when I need to stop just one. And more if i have to create another instance i will have to stop the listener... and i can't because other people are using your instance...
    Do you know how to help me?
    Thanksssssss

    You still use listener.ora, just create 3 listeners, one for each instance:
    listener.ora:
    LISTENER_VM01 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(HOST = lab2)(KEY = VM01))
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    SID_LIST_LISTENER_VM01 =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = VM01)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM01)
    LISTENER_VM02 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(HOST = lab2)(KEY = VM02))
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1522))
    SID_LIST_LISTENER_VM02 =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = VM02)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM02)
    LISTENER_VM03 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(HOST = lab2)(KEY = VM03))
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1523))
    SID_LIST_LISTENER_VM03 =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = VM03)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM03)
    Then, when you need to stop the connections to only one instance, you stop the corresponding listener:
    lsnrctl stop listener_vm02
    lsnrctl start listener_vm02
    For each instance you need to configure the parameter local_listener:
    sys@VM01> alter system set local_listener=listener_vm01;
    sys@VM02> alter system set local_listener=listener_vm02;
    sys@VM03> alter system set local_listener=listener_vm03;
    And register in tnsnames.ora:
    listener_vm01=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=lab2)(PORT=1521)))
    listener_vm02=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=lab2)(PORT=1522)))
    listener_vm03=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=lab2)(PORT=1523)))
    It's a recommended configuration for the flexibility it provides,it requires a different port for each listener, but you don't need to edit the listener.ora file each time you need to stop the connectivity to only one instance.

  • Intermittent ora-1017; poor workaround lsnrctl stop/start

    Running Oracle 11.2.0.3 on a redhat Linux x86_64 installation.
    I've mapped the servicename to the desired sid in the listener.ora to avoid continually remapping the config information in the source code. This allows the URL to remain consistent for all developers, "jdbc:oracle:thin@//host:port/service" and during predeployment testing it is changed in the listener.ora file to reflect the "production" deployment for final testing.
    This has been working great until recently when we began to receive intermittent ora-1017 during connection. If I stop and start the listener, lsnrctl stop:lsnrctl start, I can connect successfully for two sessions and then the ora-1017 reappears.
    os authentication is in use(until ??? & I know it's bad) with remote_os_authent=true os_authent_prefix=''. User accounts are the same in both instances, "scott identified externally" for instance
    The client is Windows XP and the connection is made using hibernate 3.26 (empty pwd/uid in hibernate.cfg.xml)
    listener.ora:(example)
    sid_list_listener =
    (sid_list =
    (sid_desc =
    (global_dbname = productionServiceName)
    (ORACLE_HOME = /the/oracle/home)
    (sid_name = developmentName)
    (sid_desc =
    (global_dbname = developmentName)
    (ORACLE_HOME = /the/oracle/home)
    (sid_name = developmentName)
    two connections and ora-1017 consistently.
    I've noticed that the lsnrctl status reports an increased number of handlers as soon as this error occurs for the "productionServiceName" but I'm unsure whether theere's a connection to the error
    host > lsnrctl status
    Service "productionServiceName" has 1 instance(s)
    Instance "developmentName"status UNKNOWN, has 1 handler(s) for this service
    ORA-1017...
    host > lsnrctl status
    Service "productionServiceName" has 2 instance(s)
    Instance "developmentName"status UNKNOWN, has 1 handler(s) for this service
    Instance "productionServiceName", status READY, has 2 handler(s) for this service
    Thanks for any help

    Very insightful response, thanks :|. I asked the same question of our administrator and she insists she changed nothing.
    However, I found that dynamic service registration via PMON/service_names init parameter and what appears to be "load-balancing" is causing the 1017 error regardless of what I specify in the listener.ora. According to the oracle docs (link here) the dynamic service registration takes precedence over the static sid list entries in the listener.ora. The invalid username/password error was occurring because the "production instance" had remote_os_authent set to false, so as the uncontrollable load balance switch occurred the username of course is invalid.
    I asked our administrator to set the remote_os_authent to true on the "production" instance and now i receive a different failure - intermittently - due to the absence of a collection object in that instance accessed during application launch.
    Now to determine when the switch is occurring and control it OR find an alternative to allow constant jdbc configuration with a dynamically configured back-end...as well as to determine what allowed this to work in the first place?
    My configuration was based on the statement in the listener.ora configuration documentation that says:
    "Use the parameter GLOBAL_DBNAME to identify the database service.
    While processing a client connection request, the listener tries to match the value of this parameter with the value of the SERVICE_NAME parameter in the client connect descriptor. If the client connect descriptor uses the SID parameter, then the listener does not attempt to map the values" It does go on to state this is mainly for Oracle8 , 7 but does not indicate issues with newer releases nor that it may be OBE.
    ****** SOLUTION I FOUND *********
    is to use the new 11G parameter DEFAULT_SERVICE_<listener>=<serviceName> configuration in the listener.ora and to NOT specify a service in my jdbc connect string, jdbc:oracle:thin:@//host:port. This provides the functionality I need cleaner than the initial config -
    Thanks to all who helped

  • My 4s phone load app time stop hang me be  no open press power buten how open

    my 4s phone load app time stop hang me be  no open press power buten how open

    If apps don't open anymore, try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again. You will not lose data by resetting.
    If this does not work, set it up as new device, explained in this article:
    How to back up your data and set up as a new device

  • Oracle lsnrctl stops and hangs

    Hi ,
    I installed Oracle 11g in OEL Linux . OEL Linux is inside Oracle VM . I installed in another machine (OEL Linux inside Oracle VM) . In the other machine installed Weblogic 10.3.2 , SOA Suite and RCU . I've noticed connection problems and hangs since installation of RCU .Database listener gets down or hangs every time i try to connect with it . Installation took a lot of time (this was unusual ) but in the end was successful . When i start soa_server i see errors regarding ConnectionDeadSQLException and DataSource related , when i try lsnrctl status it hangs a lot and sometimes it stops by itself .I'm 100% sure that it's listeners problem (I've tested connection from other machines too). I'm attaching listener.ora file . Please help me cause this is really urgent for me
    # listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.51)(PORT = 1521))
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER=OFF
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/product/11.2.0/dbhome_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = orcl)
    (ORACLE_HOME =/u01/app/oracle/product/11.2.0/dbhome_1)
    (SID_NAME = orcl)
    ADR_BASE_LISTENER = /u01/app/oracle

    Ok ,
    i changed it , now i can connect with ora.facilization.net but still seems slow
    For example when i try to connect with rcu for creatin repositories the response is delayed with
    10secs or more even for a simple connection , connection from navicat takes a lot and in the meantime
    i exexute lsnrctl status from terminal it hangs a lot .
    This is log.xml again
    <msg time='2012-01-20T12:37:02.677-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ora.facilization.net'
    host_addr='192.168.1.51'>
    <txt>20-JAN-2012 12:37:02 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=oracle))(service_name=ORCL.FACILIZATION.NET)(server=dedicated)) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.53)(PORT=39979)) * establish * ORCL.FACILIZATION.NET * 0
    </txt>
    </msg>
    <msg time='2012-01-20T12:37:02.677-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ora.facilization.net'
    host_addr='192.168.1.51'>
    <txt>20-JAN-2012 12:37:02 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2012-01-20T12:37:02.678-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ora.facilization.net'
    host_addr='192.168.1.51'>
    <txt>20-JAN-2012 12:37:02 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2012-01-20T12:37:02.679-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ora.facilization.net'
    host_addr='192.168.1.51'>
    <txt>WARNING: Subscription for node down event still pending
    </txt>
    </msg>
    <msg time='2012-01-20T12:37:02.679-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ora.facilization.net'
    host_addr='192.168.1.51'>
    <txt>20-JAN-2012 12:37:02 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=ora.facilization.net)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=186646784)) * status * 0
    </txt>
    </msg>
    <msg time='2012-01-20T12:37:05.681-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ora.facilization.net'
    host_addr='192.168.1.51'>
    <txt>20-JAN-2012 12:37:05 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2012-01-20T12:37:11.689-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ora.facilization.net'
    host_addr='192.168.1.51'>
    <txt>20-JAN-2012 12:37:11 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2012-01-20T12:37:32.715-05:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ora.facilization.net'
    host_addr='192.168.1.51'>
    <txt>20-JAN-2012 12:37:32 * service_update * orcl * 0
    </txt>
    </msg>

  • Lsnrctl & sqlplus hanging problem

    Hi folks,
    This is a tough one, I've found lots of suggestions to fix this but none of them seem to work.
    Yesterday morning, I was told our Oracle system was down, on investigating I eventually noticed that I was unable to open up sqlplus. A few weeks ago I'd tried to access sqlplus and it would shout something about the ORACLE_HOME var not being set, which it was. Now it won't even do anything if I tried to access sqlplus /nolog
    Going further, I then noticed that I could seem to get lsnrctl to load properly either. If I type lsnrctl start it'll just hang at the "Please wait..." message. The stop and status command if launched after start just hang at the message "Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))"
    I've tried various suggestions from disabling ons.config to adding "SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER=OFF" at the end of listener.ora, to removing the folder containing the connection sockets, to manually killing oracle processes, nothing seems to work. My knowledge being somewhat limited, I can't find anything in the listener.log file
    We run oracle 10.2.0.1.0, which I've found contains a bug which has been patched. There's a fix for it apparently but I'm still waiting on the powers that be to allow me access to metalink. If I look at the process table on the server, lsnrctl (well tnslsnr really) and sqlplus both suck up all the CPU usage.
    I'm completely out of ideas, would anyone have any suggestions for a fix that may not require the patch? I've run completely dry now as nothing I've tried made any kind of difference...
    Thanks folks
    Edit: The database runs on a Linux CentOS 5 server by the way
    Edited by: loupblanc on Aug 11, 2009 2:25 PM

    Yeah I tried that too, I saw that suggestion on http://kubilaykara.blogspot.com/2008/02/sqlplus-takes-100-of-cpu-time.html
    Trouble is, as the link says it just spews out a whole lot of garbage that makes no sense to me. Only thing that seem to tie in with your link is the zillion lines of "times(NULL) = -2122411308"
    So I need the patch, now here's the problem with that, we've not yet acquired a licence for Oracle and all the info I've found so far about that has been a little confusing. So how do we go about getting a licence, who do we buy it from etc...?
    Thanks

  • WRT54GS - Internet Connection Stopping/Hanging

    Hi,
    Just got the WRT54GS, had it about a week.
    Whenever I hit an internet site, it will load about 80% of it and stop or hang. If i refresh the page it will finish downloading it (most of the time).
    This is happening to all computers accessing the router, both wireless and the one that is wired (Ethernet) in.
    I know it's not the internet connection itself, as I can use it without going through the router without any issues.
    I've upgraded the firmware and played with a few of the settings without resolution.
    Any ideas would be helpful as this is getting fairly annoying especially as getting a Linksys was supposed to solve all my networking issues.
    My info:
    Router - WRT54GS v7
    Firmware- 7.50.5
    Connection - DSL
    Computers - 6 total (although normally 3 at the most at a time) all running XP sp3.
    Encryption - WEP 128
    Wireless Network Mode - G (all computers are G compliant)
    Thank you for your time.
    Troy

    Thank you for your reposes.
    Tried the above suggestions to no real success.
    My latest shot is that i've changed the encryption key to WPA-Personal.
    It goes great guns for 2 minutes ... then sits for about 20 seconds and then goes great guns for 2 minutes.
    Very frustrating.
    Is it possible that I got a bad router to begin with? Is there really any way to tell?
    Is it possible that one of my neighbors have a router that interferes with mine? What would cause the 2 minutes on 20 seconds off?
    Thoughts?
    Thank you
    troy

  • JCo RFC stop/hang

    Hi,
    I have a JCo RFC setup in my J2EE Administrator. Lately i found out the service will hang/stop by itself as my program unable to call it and when i test connection in SM59 (TCP/IP) it will say timeout. Once i restart the service then only it can work. I check the dev_jrfc.trc file and i noticed this error message.
    RfcGetException rc (7) message: One of the field names in the SELECT clause was not recognized.
    <RfcGetException
    Would like to know am i checking the correct trace file. Also is this error message related to my program or Netweaver server?
    Thanks.

    Hi Surendrajain2003,
    But it able to run like normal.
    Just that suddenly it stop by itself.
    Thanks
    This is only happen to the RFC that i created for my application usage.
    Will it because the RFC is too heavy? It will query my database table/insert/update and return back to R/3
    Edited by: Adrian Chan on May 15, 2009 10:31 AM

  • Failed Application Stop Hangs Enterprise Manager

    Hi guys,
    I have a problem shutting these down certain java web applications, if I shut down the whole OC4J instance one of my applications always fails to stop. If i try to shut it down individually it also fails to stop. So that is one problem.
    However, more frustrating is that once this has happened the enterprise manager becomes unavailable. I can get the login page but then it just hangs at a blank loading screen. This stays like this until i shut down the OC4J from the command line using opmnctl.
    Thankfully other applications in other OC4J instances appear unaffected.
    what is going on!
    cheers
    neil

    Do the OC4J log files contain any information on possible reasons the problem is occurring?
    -steve-

  • Electricity supply failure stops Windows 8 intermittently from next startup, tell me procedure of stopping hanging of Windows 8.

    Electricity supply failed and now intermittently Windows 8 stops, Windows 7 (dual boot) doesn't hangs also corrects from problems automatically, why Windows 8 starts problemed after electricity failure and woudn't correct itself?
    (Intel motherboard DZ75ML-45K and Windows 8 are not at all compatible, default drivers of Windows must not be answer.)

    Electricity supply failed and now intermittently Windows 8 stops, Windows 7 (dual boot) doesn't hangs also corrects from problems automatically, why Windows 8 starts problemed after electricity failure and woudn't correct itself?
    (Intel motherboard DZ75ML-45K and Windows 8 are not at all compatible, default drivers of Windows must not be answer.)
    I am successful for trial and error correcting problem, other dual boot operating system with Windows 8 (64 bit), Windows 7 Enterprise (32 bit), made unknown corrections internally for Windows 8 eliminating problem of hanging of Windows 8 because of electricity
    supply failure.

  • How can I get FF to stop hanging ('not responding') with javascript errors 13, 847 & 1000?

    I just wrote a long list of what I've done to check the situation and the info vanished when I looked lower on page. so to reiterate in condensed form-
    you name it I've done it over the past week including uninstalling and reinstalling from a new download after disabling addons and plugins. Sorry, but safemode cannot be located at all. Anti-virus checks.
    Machine is only two months old.
    Emptied caches, cookies, and history.
    Read knowledge base- good info -but didn't this problem yet.
    It happened with FF4 so dropped back to 3.6.15 and was updated to 3.6.16 , shortly after that surf city- hanging ten- or more time per hour.
    Tried live help but hanging kicked me out of line over and over again-was #1 in q for over an hour one day. Can't remember everything else and I'm getting frustrated

    hello, this is probably happening when you run the default profile with the -no-remote switch.
    http://kb.mozillazine.org/Profile_in_use

  • Lsnrctl stopping with error

    (Oracle 10g/AIX5.3)
    When I start the listner, it starts and runs for a couple of seconds then stops. I have looked at the Listner log file and I get the following error
    TNSLSNR for IBM/AIX RISC System/6000: Version 10.2.0.3.0 - Production on 12-AUG-2008 12:49:47
    Copyright (c) 1991, 2006, Oracle. All rights reserved.
    System parameter file is /oracle/app/oracle/product/10.2/db_1/network/admin/listener.ora
    Log messages written to /oracle/app/oracle/product/10.2/db_1/network/log/listener.log
    Trace information written to /oracle/app/oracle/product/10.2/db_1/network/trace/listener.trc
    Trace level is currently 0
    Started with pid=94424
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=SERVER2.net)(PORT=1521)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    WARNING: Subscription for node down event still pending
    12-AUG-2008 12:49:47 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=SERVER2)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870080)) * status * 0
    WARNING: Subscription for node down event still pending
    12-AUG-2008 12:49:56 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=SERVER2)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870080)) * status * 0
    12-AUG-2008 12:50:12 * service_register * IE * 0
    WARNING: Subscription for node down event still pending
    12-AUG-2008 12:50:15 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=SERVER2)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870080)) * status * 0
    WARNING: Subscription for node down event still pending
    12-AUG-2008 12:50:19 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=SERVER2)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870080)) * status * 0
    What’s causing this issue?

    Some some update events in the log
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    WARNING: Subscription for node down event still pending
    12-AUG-2008 14:27:06 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=SERVER2)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870080)) * status * 0
    12-AUG-2008 14:27:33 * (CONNECT_DATA=(SERVICE_NAME=SPEX2_DGB)(SERVER=dedicated)(CID=(PROGRAM=oracle)(HOST=SERVER1)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=10.56.4.100)(PORT=38527)) * establish * SPEX2_DGB * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    12-AUG-2008 14:27:33 * (CONNECT_DATA=(SERVICE_NAME=SPEX)(CID=(PROGRAM=oracle)(HOST=SERVER1)(USER=oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=10.56.4.100)(PORT=38528)) * establish * SPEX * 12514
    TNS-12514: TNS:listener does not currently know of service requested in connect descriptor
    WARNING: Subscription for node down event still pending
    12-AUG-2008 14:27:56 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=SERVER2)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870080)) * status * 0

  • How to stop hanging up or calling other numbers while in a call.

    My wife has the Droid 2 and she has been having continuous problems with the phone hanging up on her calls or dialing her voice mail while in a call.  I have had several calls hang up on me as well.  I have checked how she holds the phone to make sure the proximity sensor is working and everything appears fine.  She has even tried pressing the power/lock button as soon as she enters a call with no improvement.  Has anyone else seen this problem and what can be done to fix it?

    When speaking on the droid devices once the phone is placed to your ear the screen should go black and once you pull the phone away from your face it should light back up giving options to either make a call or hang up or other options.  If  you are still able to call while the phone is in use and the device is up to your face, try to do a battery pull by removing the battery while phone is powered on and let the battery stay out for about 10 to 15 seconds then replace the battery and see if there is still an issue with the device calling other people while the phone is in use. The next option if you are still having the issue to do a factory reset but make sure the SD card is removed before performing the factory reset here is the link for instructions on the factory reset http://search.vzw.com/?do=viewdoc&id=31308&p=null
    Hope this Helps

  • Diagnosing a 3rd party servcie that hangs or stops on it's own

    Hi.
    I'm encountering some challenges with a 3rd party service that hangs or stops on it's own (and when self-stopping, hangs.) The challenge being that neither it's logs nor the Event Viewer contain any details. It stops logging itself when it hangs or stops and
    the event viewer only records that it stopped and/or started, but nothing else.
    What is the current recommended method for doing *unattended* dumps on running processes? Most of the tools I am familiar with seem t be obsolete. I've bee trying to search the web, but most of what I have found is related to known issues with specific services
    and is of little use.
    I'm not expecting anyone to give me a long drawn out list, but if anyone could suggest a link to a web site or even a thread somewhere on these forums that describes a method it would be much appreciated.
    Thanks,
    Dan

    You might try them over here.
    Windows Desktop Perfmon and Diagnostic tools forum on MSDN
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

Maybe you are looking for