Exception on Graceful Shutdown

hi
While graceful shutdown, Its not getting shutting down properly and getting the Exception.
Exception in myserver.log file:
####<Aug 30, 2004 12:51:38 PM GMT+05:30> <Info> <JMS> <BDC1-3ad83> <myserver> <Graceful shutdown task> <<WLS Kernel>> <> <BEA-040301> <JMS service is suspended and in standby mode.>
####<Aug 30, 2004 12:51:38 PM GMT+05:30> <Info> <JMS> <BDC1-3ad83> <myserver> <Graceful shutdown task> <<WLS Kernel>> <> <BEA-040312> <An error occurred in suspending the JMS service. The first Throwable is "weblogic.jms.common.JMSException: Connection not found".
weblogic.jms.common.JMSException: Connection not found
at weblogic.jms.dispatcher.InvocableManager.invocableRemove(InvocableManager.java:152)
at weblogic.jms.frontend.FEConnection.close(FEConnection.java:440)
at weblogic.jms.frontend.FEConnection.close(FEConnection.java:415)
at weblogic.jms.frontend.FrontEnd.suspend(FrontEnd.java:317)
at weblogic.jms.JMSService.suspend(JMSService.java:751)
at weblogic.jms.JMSServiceServerLifeCycleImpl.prepareToSuspend(JMSServiceServerLifeCycleImpl.java:68)
at weblogic.t3.srvr.SubsystemManager.prepareToSuspend(SubsystemManager.java:168)
at weblogic.t3.srvr.T3Srvr.prepareToSuspend(T3Srvr.java:1050)
at weblogic.t3.srvr.ServerLifeCycleWorkerThread.prepareToSuspend(ServerLifeCycleWorkerThread.java:51)
at weblogic.t3.srvr.ServerLifeCycleWorkerThread$1.run(ServerLifeCycleWorkerThread.java:35)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
at weblogic.t3.srvr.ServerLifeCycleWorkerThread.run(ServerLifeCycleWorkerThread.java:32)
>
####<Aug 30, 2004 12:51:38 PM GMT+05:30> <Info> <JDBC> <BDC1-3ad83> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'> <<WLS Kernel>> <> <BEA-001144> <Force Suspending the JDBC service.>
####<Aug 30, 2004 12:51:38 PM GMT+05:30> <Critical> <WebLogicServer> <BDC1-3ad83> <myserver> <Graceful shutdown task> <<WLS Kernel>> <> <BEA-000376> <
Server failed to gracefully shutdown.
Use Force shutdown command to bring the server down
Can you help me to solve the problem ASAP.
Thanks in Advance
Suresh

Suresh Kumar wrote:
hi
While graceful shutdown, Its not getting shutting down properly and getting the Exception.
Exception in myserver.log file:
####<Aug 30, 2004 12:51:38 PM GMT+05:30> <Info> <JMS> <BDC1-3ad83> <myserver> <Graceful shutdown task> <<WLS Kernel>> <> <BEA-040301> <JMS
service is suspended and in standby mode.>
####<Aug 30, 2004 12:51:38 PM GMT+05:30> <Info> <JMS> <BDC1-3ad83> <myserver> <Graceful shutdown task> <<WLS Kernel>> <> <BEA-040312> <An error
occurred in suspending the JMS service. The first Throwable is
"weblogic.jms.common.JMSException: Connection not found".
weblogic.jms.common.JMSException: Connection not found
at weblogic.jms.dispatcher.InvocableManager.invocableRemove(InvocableManager.java:152)
at weblogic.jms.frontend.FEConnection.close(FEConnection.java:440)
at weblogic.jms.frontend.FEConnection.close(FEConnection.java:415)
at weblogic.jms.frontend.FrontEnd.suspend(FrontEnd.java:317)
at weblogic.jms.JMSService.suspend(JMSService.java:751)
at weblogic.jms.JMSServiceServerLifeCycleImpl.prepareToSuspend(JMSServiceServerLifeCycleImpl.java:68)
at weblogic.t3.srvr.SubsystemManager.prepareToSuspend(SubsystemManager.java:168)
at weblogic.t3.srvr.T3Srvr.prepareToSuspend(T3Srvr.java:1050)
at weblogic.t3.srvr.ServerLifeCycleWorkerThread.prepareToSuspend(ServerLifeCycleWorkerThread.java:51)
at weblogic.t3.srvr.ServerLifeCycleWorkerThread$1.run(ServerLifeCycleWorkerThread.java:35)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
at weblogic.t3.srvr.ServerLifeCycleWorkerThread.run(ServerLifeCycleWorkerThread.java:32)
>>
####<Aug 30, 2004 12:51:38 PM GMT+05:30> <Info> <JDBC> <BDC1-3ad83> <myserver> <ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'> <<WLS
Kernel>> <> <BEA-001144> <Force Suspending the JDBC service.>
####<Aug 30, 2004 12:51:38 PM GMT+05:30> <Critical> <WebLogicServer> <BDC1-3ad83> <myserver> <Graceful shutdown task> <<WLS Kernel>> <>
<BEA-000376> <
Server failed to gracefully shutdown.
Use Force shutdown command to bring the server down
Can you help me to solve the problem ASAP.
Thanks in Advance
Suresh

Similar Messages

  • "Ignore Sessions During Shutdown" and "Graceful Shutdown Sequence"

    Hi
    I have J2EE application consisting of WEB and EJB layers deployed on WL 8.1
    I start the Graceful Shutdown Sequence with Ignore Sessions During Shutdown option set. sessionDestroyed() method of registered HttpSessionListener is fired but at this moment JNDI tree is already empty, EJB module undeployed and the listener is not able to get to application's EJBs.
    In the documentation (http://e-docs.bea.com/wls/docs81/adminguide/overview_lifecycle.html#1045901) Ignore Sessions During Shutdown option is explained as follows:
    "If you enable this option WebLogic Server will drop all HTTP sessions immediately, rather than waiting for them to complete or timeout."
    What does "drop" mean here? Is this some exception to Graceful Shutdown Sequence and the following excerpt from the documentation? : "During a graceful shutdown, subsystems complete in-flight work and suspend themselves in a specific sequence and in a synchronized fashion, so that back-end subsystems like JDBC connection pools are available when front-end subsystems are suspending themselves."
    Regards

    Hi,
    You can use tcodes
    SMQR --> To register a queue
    SMQS --> To register a destination in Queue Schedular
    SMQ1 --> OutBound Queue Details
    SMQ2 --> Inbound Queue Details
    SXMB_ADMIN --> Manage Queue to register,deregister and activate the queue.
    Check the link for more details : http://help.sap.com/saphelp_nw04/helpdata/en/59/d9fa40ee14f26fe10000000a1550b0/frameset.htm
    For step details for server start/stop you can search on google for more details. And for an idea check the section Managing the SAP Start-Up Service via the SAP MMC Snap-In in the link https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3e3fad90-0201-0010-2f91-c8907db40bfe
    Thanks!
    Edited by: sudhir tiwari on Nov 12, 2008 12:00 PM

  • A UPS model that works with Mac Native software to do a graceful shutdown and automatic restart during a power failure.

    I've tried 3 UPS's (2 APC and one TripLite) that state they are OSX compatible, however, they do not fully respond to the native osx setting in (system Preferences/ Energy Saver/ UPS/Start up automatically after a power failure). This is what happens:
    During a power outage, the OS does a graceful shutdown, but does not reboot when power is restored. 
    Apparently, the UPS is not notified to turn off during the shut down process. The power (on-Off-On) cycle is required by the mac to restart.
    Trip lite tech support says they have software that works with Windows and linux to do this, but not mac.
    I've tried two older APC UPS's, One Smart UPS1500 and a Back-UPS 1500 with the same result on two different servers and one iMac.
    At this point I'm looking for a make and model of a UPS that does work. If anyone can verify a make and model that actually does this, I'd greatly appreciate it.
    Its a simple test, just pull the plug on your UPS, wait for the system to shut down, and then plug the UPS back in. The system should reboot.

    Many of the CyberPower UPS units are compatible. Checkout the home solutions on this page: http://www.cyberpowersystems.com/products/ups-systems.html

  • None exist error  code after a graceful shutdown

    I'd like to return a none zero exit code after a normal graceful shutdown.
    My end task is to be able to send a restart event to a number of machines running my application that will gracefully shutdown and inform the shell script that started it that it wants to be restarted.
    One option would be System.exit with a shutdown hook that monitors the current threads, and does not end until the other threads have also exited, but I would have to inform this hook of threads that should be allowed to finish naturally. But that seams a little [t]icky.
    I guess I could write to a file, and then close down naturally. But this leaves files drifting about. I'm not overly keen on that either.
    Any other suggestions? Thanks, Mike

    The "worker" thread should
    not be interupted, and told to exit, just left to
    exit under there own steam. (when they have finished
    the current job). What is the "worker" thread ? Is it what I meant with "watcher" thread ? Is that what you said or what I said ?
    And, I assumed we are talking about a server-like application, that is one running indefinitely, as opposed to one that would perform a specific task and then terminate. Am I correct ?
    The initalization of this new type of
    shutdown/restart is currently undefined, but will
    likely that the application start listening on a
    socket connection. I'm sorry, I don't understand that at all.
    I want this to ease deployment,
    currently when I deploy a new version I type "ant
    deploy", then VNC on to each of the computer
    (currently just 3, but likely to be more soon) and
    manually restart. What I want is to just type "ant
    deploy" it sends a signal to the running copies, and
    they restart themselfs. (I'm a lazy brsatard).You know this quote by Larry Wall (?) about the three most important characteristics of a programmer, don't you ?
    >
    and thus the exit code is already defined.Not so with what I would consider a "graceful
    shutdown". Then the application would shut down as
    all the threads have completed.It depends on whether having "all threads completed" is a normal part of the application's flow. If I assumed correctly we were talking about a server-like app, then it's not. Ergo the command to terminate has to be issued at some point. The question is how that gets done. For instance, if you send a CTRL-C from the shell, your application shuts down with an error code != 0.
    A graceful shutdown needs to be initiated somewhere. How do you plan to do it ?

  • Graceful Shutdown of a Content Engine (CE510, CE565)

    May I come back to y.lo's message from January this year. He asked for a shutdown or halt command for CEs.
    There is a possibility to shutdown the NM-CE-BP (network module) with the service-module command form the IOS. There must be something similar in ACNS! In the manuals there is quite often a referenc to "orderly shutdown" or "gracefully shutdown", but I couldn't find the appropriate command anywhere near these references.
    Thanks.

    Its not exactly graceful but I've always done a reload with the console plugged in, then when the BIOS messages come up for accessing the flash (before the disk scan), I power it off. The theory is the disks have been cleanly shutdown and the linux subsystem will flushed the filesystems and the content engine isn't actually running. If there is a command I'd like to know it as well.
    regards
    Mark

  • Graceful shutdown Weblogic 6.1

    Folks,
    Could you please tell me know what's the command to graceful shutdown WebLogic 6.1 on UNIX? Is there any information on the website?
    Thanks a lot in advance.
    Damon

    See this link:
    http://edocs.bea.com/wls/docs61/adminguide/startstop.html#1027540
    It describes how to shutdown gracefully from both the Console and from the command line.
    regards,
    -Ade

  • Exception caused by 'shutdown immediate'

    Hi,
    I am using a PL/SQL to delete or update tables.
    When Oracle is issued with 'Shutdown immediate' or 'Shutdown abort' or if Oracle is abruptly shutdown, I have to rollback the transactions. Although, I have not written a rollback command, Oracle automatically rolls back. This is the desired behaviour. This happens as desired in my machine. In Production environment, I believe the shutdown has thrown an exception. The logic I had entered in the exception block where we update an error table is visible in the Production environment. I could not recreate this exception in my system. I am not sure what exception Oracle throws on abrupt shutdown. So, I plan to write an exception block as a precaution. Do you please know what exceptions are possible ones if there is a abrupt shutdown.
    Regards,
    Raj

    > Do you please know what exceptions are possible ones if there is a abrupt shutdown.
    There is no exception thrown.
    SHUTDOWN ABORT is like disconnecting the power cord & no subsequent action occurs.

  • ISL Ports (E ports) on MDS 9509 are showing Gracefully Shutdown

    We have an ISL connection between E mode ports of two MDS 9509 Switches . (FabricA)
    Upon Health Check I found that these ISL ports on both the switches are down and when I checked syslogs on both switches they show "Interface X/X Gracefully shutdown"
    I checked the Cisco document for this error which says -
    "The Cisco NX-OS software implicitly performs a graceful shutdown in response to either of the following actions for interfaces operating in the E port mode:
    If you shut down an interface.
    If a Cisco NX-OS software application executes a port shutdown as part of its function."
    So no one has shut down these ports manually  and I am not sure what the second point (If a Cisco NX-OS software application executes a port shutdown as part of its function) means
    I tried shut / no shut on these ports bt no go.
    I need to know what could be the problem and its resolution.

    Hi Vishwa,
    Sounds like there is a problem between switches.  Look at a "show interface" and see if it is "error disabled".  I don't know the topology, maybe optical equipment or patch panel between switches?  You can look at the signal levels on the interfaces with "show interface fcx/x after the no shut.  The signal levels are not valid if the interface is not "in sync" but you can still get an idea of no receive signal.  Do a "not shut" on both sides and look at the levels.   Look for other messages in the logs at the same time and post those here.
    Best regards,
    Jim

  • Graceful shutdown of NT service (beasvc)??

    f you run weblogic as a service, you can specify a stopclass using the -stopclass:
    parameter to beasvc. This stopclass is supposed to get called when Windows shuts
    down the service.
    If you stop the service from the Windows Control Panel, it works fine and the
    stopclass is invoked thus gracefully shutting down weblogic.
    If you stop the service by doing a System restart or shutdown (like from the windows
    taskbar choosing Start->Shutdown or Start->Restart), then the weblogic service
    does not get gracefully shutdown, and the stopclass does not get invoked.
    It appears that windows simply kills the weblogic service by killing its process,
    and does not allow it to shutdown cleanly. Perhaps beasvc is not listening and
    handling the appropriate Windows events.
    Does anyone have an idea how to get beasvc to shut down gracefully when the computer
    is restarted or shutdown? Is this a bug with beasvc?

    Its not exactly graceful but I've always done a reload with the console plugged in, then when the BIOS messages come up for accessing the flash (before the disk scan), I power it off. The theory is the disks have been cleanly shutdown and the linux subsystem will flushed the filesystems and the content engine isn't actually running. If there is a command I'd like to know it as well.
    regards
    Mark

  • WLAN Controller and Location appliance graceful shutdown?

    Does anyone know if there is a supported graceful shutdown method/command for the
    4400 series WLAN Controller and 2700 Location Appliances?
    This weekend our server room will be undergoing maintenance and will experience a total power outage for a 4 hour period.  It is our intent to manually bring all equipment down (hopefully in a graceful manner) and then back up once the maintenance is completed.  As a result does anyone know if special precaution is needed to shutdown these 2 appliances, or can we simply bring down these devices hard which is the case with most other Cisco equipment?
    Thanks in advance

    Hi Mark,
    Channel 1, 6, and 11 are just about as non-overlapping as 1, 7, and 13. There's an insignificant amount of overlap, so it's just as plausible of a solution, even in Europe. I honestly don't know why you wouldn't use the extra channels to eliminate the minor overlap - every bit helps.
    The "channel blanket" or "virtual cell" WLAN design philosophy is rapidly spreading. Cisco maintains that it's a standards violation and I've heard no talk of them purchasing the not-to-be-named company or of them adopting the same design philosophy. I sincerely hope that they do one of the two soon, however, because it's very good design that's difficult for Cisco to compete against.

  • ILOM feature "Graceful Shutdown and Power Off"

    Hi,
    We are using Sunblade 6250/6270s, with a stripped down SLES linux installed. We would want to be able use the ILOM feature "Graceful Shutdown and Power Off", but have failed doing this so far. What is required from the configuration and/or operating system to support this power off alternative? I have searched but not found any information on this topic.
    Thanks,
    Harri

    The ILOM "Graceful Shutdown and Power Off" equal you press power button.
    The SLES GUI (init 5) it will popup a window to let you confirm your action when you press the power button.
    In the command line interface (init 3) when you press the power button your system Graceful Shutdown and Power Offed.

  • When using facebook, Firefox locks up and nothing works except a hot shutdown on Windows Vista

    About twice a week, usually, but not always, when using facebook, my screen locks up, no buttons or clicks on links work and I get a message in the Firefox title bar that says: "Firefox not responding". I'm running Windows Vista Home Premium on a Toshiba Satellite laptop and the only other window open is my email account on GoDaddy, but this happens even when that is not open. My hard drive LED begins glowing steady "on" when this occurs when usually it is flashing or not glowing at all. It frequently happens when changing facebook pages or trying to close facebook. Sometimes I get a "wait" hourglass, sometimes not. I have tried leaving the computer alone to let it sort out on it's own, and I have tried machine gun tapping on the "close" button. Either way the only resolution is a hot shutdown (hold down the computer power button until the computer shuts down) and wait a few minutes before reboot. On reboot, the same facebook page will open automatically and sometimes will lock up again when I try to close that window. On more rare occasions this lockup happens on sites other than facebook. My computer guru has looked at my setup and tells me my computer is fine and virus free. Since I'm a computer doof I don't know what he is talking about. Any ideas? Is there a difference between a "crash" and a "lockup" or do they mean the same thing?

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • How do I gracefully shutdown the server from a script?

    I have a shutdown class that stop the server.
    When I'm using 'stop the server' from the console (after configure a
    new shutdown class to config.xml) it work good.
    How do I do the same from a script (cmd, bat or sh - doesn't metter).

    http://edocs.bea.com/wls/docs81/ConsoleHelp/startstop.html#1212202
    "avishosh" <[email protected]> wrote in message
    news:[email protected]..
    I have a shutdown class that stop the server.
    When I'm using 'stop the server' from the console (after configure a
    new shutdown class to config.xml) it work good.
    How do I do the same from a script (cmd, bat or sh - doesn't metter).

  • What is command for graceful shutdown ?

              Question - I see in the WebLogic documentation that a Server
              running in a cluster should be shutdown using the Admin SHUTDOWN
              command - but I am unable to find any more information about this
              command.
              Is this a command that I can execute from the command line in
              a Unix system - or is it referring to clicking the Shutdown
              button on the WL Console ?
              Thanks in advance for any assistance.
              Gary Bartlett
              

              Before running the weblogc.admin class, run the setEnv.sh in the current shell. Or set the CLASSPATH,etc env variables.
              "Ronan Brady" <[email protected]> wrote:
              >This should work:
              >> java weblogic.Admin t3://127.0.0.1:7001/ shutdown system <password>
              >
              >Ronan.
              >
              >
              >"Gary Bartlett" <[email protected]> wrote in message
              >news:3a3a2ee0$[email protected]..
              >>
              >> Question - I see in the WebLogic documentation that a Server
              >> running in a cluster should be shutdown using the Admin SHUTDOWN
              >> command - but I am unable to find any more information about this
              >> command.
              >>
              >> Is this a command that I can execute from the command line in
              >> a Unix system - or is it referring to clicking the Shutdown
              >> button on the WL Console ?
              >>
              >> Thanks in advance for any assistance.
              >>
              >> Gary Bartlett
              >
              >
              

  • Graceful shutdown

    I have to update the 6000 chassis with new firmware i am planning to update the x6220 modules with new firmware first.
    the plan was to shutdown all the vm's on the blades and then update the bios on a blade by blade basis to make sure it worked
    once the blades were updated, to shut them down ( via webgui) and perform the CMM update.
    is using a tftp server for the new CMM bius update file (.ima) the only way to do it?
    i was planning on using a laptop connected via serial cable into the chassis - do i have to run tftp server on this laptop to get access to the .ima file?
    thanks

    Your question is a little confusing...but let me try to answer it...
    Its not clear whether you have the network port to the ILOM's of the blades x6220 connected (this would require the CMM network port to be connected too since the blade ILOMs are all connected through that to the outside world.
    If the Blades SP's are networked, then so is the CMM.
    You will require a network connection to upgrade your firmware.
    Yes, upgrade all the blades first, this can be done from the webgui for each blade pointing the web gui to a copy of the .ima file on your laptop.
    Once done you can then look at upgrading the CMM firmware.
    If you have an older CMM firmware release than 2.0, you will need to do this via the CMM CLI using TFTP as you mention, if you have a fairly new CMM firmware greater than 2.0 then you will, in addition to the TFTP CLI method, have a webgui for the CMM which is capable of uploading the CMM firmware from your laptop via http.
    Hope this helps.
    Edited by: Peter_Wilson on Aug 21, 2008 11:07 AM
    Edited by: Peter_Wilson on Aug 21, 2008 11:10 AM

Maybe you are looking for

  • Ipad not being not being "seen" by itunes when plugged into mac book pro. Troubleshooting guide didn't help.

    Hello, I just recently got my macbook pro (2009, 15 inch) repaired. While it was being repaired I bought an ipad and was synching it to a seperate computer. However, now when I plug in the ipad to the macbook, itunes does not see the ipad and the ipa

  • Slow speed, please help

    Hi, I have has problems with my line disconnecting due to an faulty extension cable which I have removed but my internet is still slow. My ADSL Stats are: My Speed Test Result My Line Speed Check Is there anything that can done to increase the speed

  • Applications crash when attempting to use network printer

    I just upgraded to Tiger. Now, all applications crash when I attempt to select my network printer (HP laserjet 4600) from the 'File' ->'Print' menu. If the network printer is selected as my default printer, the program closes before the print menu ev

  • Script to read files in a directory

    Dear Experts, I am new to UNIX and I have a requirement to read the names of a file in a directory. I have some script below and in this test case I am reading the names of the files in the present directory into a variable and then looping through e

  • Regarding Context path

    Hello I have a web project, In my controller class I am trying to read a txt file contained in the same directory as my controller using FileInputStream fip =new FileInputStream("D:\\Workspace\\VIICApplication\\src\\utils\\sequence.txt"); Can I use c