Sabnzbd service failure at boot

Hi all
I'm trying to run sabnzbd automatically at boot.
I installed python2-yenc and sabnzbd from the AUR
I changed the host in sabznbd.ini to 192.168.1.254 so I can access the webgui locally
I modified /opt/sabnzbd permissions so that sabznd is the group and owner
I can start the service successfully with
systemctl start sabnzbd.service
after which I can see the webgui on 192.168.1.254:8080
however if I enter
systemctl enable sabnzbd.service
and reboot, sabnzbd fails
[root@arch ~]# systemctl status sabnzbd.service
sabnzbd.service - SABnzbd binary newsreader
Loaded: loaded (/usr/lib/systemd/system/sabnzbd.service; enabled)
Active: failed (Result: exit-code) since Sun 2013-04-14 19:03:07 BST; 1h 26min ago
Process: 209 ExecStart=/bin/sh -c python2 /opt/sabnzbd/SABnzbd.py -l0 (code=exited, status=2)
Apr 14 19:03:06 arch sh[209]: File "/opt/sabnzbd/cherrypy/_cpserver.py", line 90, in start
Apr 14 19:03:06 arch sh[209]: ServerAdapter.start(self)
Apr 14 19:03:06 arch sh[209]: File "/opt/sabnzbd/cherrypy/process/servers.py", line 62, in start
Apr 14 19:03:06 arch sh[209]: self.wait()
Apr 14 19:03:06 arch sh[209]: File "/opt/sabnzbd/cherrypy/process/servers.py", line 97, in wait
Apr 14 19:03:06 arch sh[209]: raise self.interrupt
Apr 14 19:03:06 arch sh[209]: error: [Errno 99] Cannot assign requested address
Apr 14 19:03:06 arch sh[209]: 2013-04-14 19:03:06,694::ERROR::[SABnzbd:303] Failed to start web-interface : [Errno 99] Cannot assign requested address
Apr 14 19:03:07 arch systemd[1]: sabnzbd.service: main process exited, code=exited, status=2/INVALIDARGUMENT
Apr 14 19:03:07 arch systemd[1]: Unit sabnzbd.service entered failed state
I suspect it's because my internet connection isn't ready? I use netctl's ethernet-static example file and this command
[email protected]
which successfully connects my NAS to the internet
here's the contents of the sabnzbd systemd file
[Unit]
Description=SABnzbd binary newsreader
After=network.target
[Service]
Type=simple
ExecStart=/bin/sh -c "python2 /opt/sabnzbd/SABnzbd.py -l0"
User=sabnzbd
Group=sabnzbd
[Install]
WantedBy=multi-user.target
does anyone know what I'm doing wrong? thanks for the help!

solved! if I change host in sabnzbd from localhost (the default) to 0.0.0.0 it works
not sure why? I'm a new user so have a lot to learn it seems =/

Similar Messages

  • Systemd-tmpfiles-setup.service failure

    Good evening friends.
    I recently made a fresh install of arch linux on my pc and since the first boot up i get this error:
    systemd-tmpfiles-setup.service failure
    Failded to start create volatile files and directories
    When i used "systemctl status" command on it, it said something about unkwnon groups in usr/lib/... somewhere, i can't remember all of it, because after i rebooted and tried the same command, it only said that the process failed, without giving much on details.
    What might be the problem here?
    Last edited by NotaName (2014-09-14 17:42:37)

    falconindy wrote:
    Just a guess, but I think you might have some unknown groups in usr/lib/... somewhere.
    You'll really need to try harder to get the logs. They're still in the journal.
    Thanks for the answer.
    Well, i'm still working on the log finding part, as i'm not sure where they are supposed to be. I checked the /var/log folder files, but it seems that they are not readable/binary maybe?
    P.S. Is this something that i might ignore if i don't find a way to fix it?
    Last edited by NotaName (2014-09-14 19:36:47)

  • Systemd service failing on boot

    Hello, im new to Arch and systemd
    When I boot my computer the sabnzbd service fails to start, but if i start it manually afterwards it works fine.
    I can make it work by adding a 'sleep 10' to the .service file but that seems like a hack and I'd like to learn the correct way.
    It seems as though the sabnzbd.service is starting before the /run tmpfs partition has been mounted but I dont know. 
    I'm hoping someone smarter than me knows the answer to this
    Thanks
    Dave
    Below is the messages.log
    Oct 24 19:58:35 winter systemd[1]: PID file /run/sabnzbd/sabnzbd-8080.pid not readable (yet?) after start.
    Oct 24 19:58:36 winter systemd[1]: sabnzbd.service never wrote its PID file. Failing.
    Oct 24 19:58:36 winter systemd[1]: Unit sabnzbd.service entered failed state.
    Oct 24 19:58:36 winter systemd[1]: Starting Multi-User.
    Oct 24 19:58:36 winter systemd[1]: Reached target Multi-User.
    Oct 24 19:58:36 winter systemd[1]: Starting Graphical Interface.
    Oct 24 19:58:36 winter systemd[1]: Reached target Graphical Interface.
    Oct 24 19:58:36 winter systemd[1]: Starting Update UTMP about System Runlevel Changes...
    Oct 24 19:58:36 winter systemd[1]: Started Update UTMP about System Runlevel Changes.
    Oct 24 19:58:36 winter systemd[1]: Startup finished in 4s 330ms 255us (kernel) + 8s 66ms 514us (userspace) = 12s 396ms 769us.
    Oct 24 19:58:36 winter ifplugd[282]: Executing '/etc/ifplugd/netcfg.action eth0 up'.
    Oct 24 19:58:36 winter ifplugd[282]: client: up
    Oct 24 19:58:36 winter ifplugd[282]: client: loading ethernet-static
    Oct 24 19:58:36 winter ifplugd[282]: client: :: ethernet-static up [done]
    Oct 24 19:58:36 winter ifplugd[282]: Program executed successfully.
    sabnzbd.service:
    [Unit]
    Description=SABnzbd binary newsreader
    After=network.target
    [Service]
    EnvironmentFile=/etc/conf.d/sabnzbd_systemd
    #ExecStartPre=/usr/bin/sleep 10
    ExecStart=/bin/sh/ -c "python2 ${SABNZBD_DIR}/SABnzbd.py ${SABNZBD_ARGS} --pid /run/sabnzbd"
    ExecStop=/usr/bin/curl -f "${SABNZBD_PROTOCOL}://${SABNZBD_USPW}${SABNZBD_IP}:${SABNZBD_PORT}/sabnzbd/api?mode=shutdown&apikey=${SABNZBD_KEY}"
    Type=forking
    PIDFile=/run/sabnzbd/sabnzbd-8080.pid
    User=sabnzbd
    Group=sabnzbd
    [Install]
    WantedBy=multi-user.target

    For diagnostics try:
    # systemctl status sabnzbd.service

  • SCCM 2012 SP1 - Offline Servicing failure - Failed to find or access the update binaries to be applied on the image

    Hi there
    Trying to patch a new Windows 7 SP1 image within SCCM 2012 SP1, but it's failing.
    I've searched for information on the failure messages I am seeing, but although there is a LOT of information online concerning Offline Servicing failures, I can't find anything on the errors I am seeing.
    I've tried injecting a single update, five updates and ten updates, no difference, same messages.
    We have McAfee Access Protection disabled, as we know Offline Servicing simply won't work if this is running.
    In the console, in Schedule Update Status for the image I am trying to update, the following message is shown:
    "Failed to find or access the update binaries to be applied on the image."
    That sounds as if the process can't find the actual .cab file for any update I've tried to inject, but I don't know why it wouldn't be able to do that, we have Software Updates configured and the .cab files are on the same server.
    When I looked at the OfflineServicingMgr.log file, I see the following entries:
    Processing image at index 1        SMS_OFFLINE_SERVICING_MANAGER        14/06/2014 14:52:49        8272 (0x2050)
    Mounting image at index 1. Image file='D:\ConfigMgr_OfflineImageServicing\PackageID\W7_Image.wim', MountDirectory='D:\ConfigMgr_OfflineImageServicing\PackageID\ImageMountDir', ImageFileType='WIM', Mode='ReadWrite'        SMS_OFFLINE_SERVICING_MANAGER       
    14/06/2014 14:52:49        8272 (0x2050)
    Image OS information : MajorVersionMS = 6, MinorVersionMS = 1, MajorVersionLS = 7601, MinorVersionLS = 17514        SMS_OFFLINE_SERVICING_MANAGER        14/06/2014 14:53:31       
    8272 (0x2050)
    Failed to find properties of file 4        SMS_OFFLINE_SERVICING_MANAGER        14/06/2014 14:53:31        8272 (0x2050)
    UnMounting Image (Commit Changes = 0) ...        SMS_OFFLINE_SERVICING_MANAGER        14/06/2014 14:53:31        8272 (0x2050)
    Completed processing image package PackageID. Status = Failed        SMS_OFFLINE_SERVICING_MANAGER        14/06/2014 14:54:04        8272 (0x2050)
    Updated history for image package PackageID in the database        SMS_OFFLINE_SERVICING_MANAGER        14/06/2014 14:54:04        8272 (0x2050)
    Schedule processing failed        SMS_OFFLINE_SERVICING_MANAGER        14/06/2014 14:54:04        8272 (0x2050)
    Processing completed for Schedule with ID 16777237        SMS_OFFLINE_SERVICING_MANAGER        14/06/2014 14:54:04        8272 (0x2050)
    STATMSG: ID=7910 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_OFFLINE_SERVICING_MANAGER" SYS=SCCMServer.domain SITE=Site_Code PID=8560 TID=8272 GMTDATE=Sat Jun 14 13:54:04.964 2014 ISTR0="16777237" ISTR1="" ISTR2=""
    ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0        SMS_OFFLINE_SERVICING_MANAGER       
    14/06/2014 14:54:04        8272 (0x2050)
    Schedule processing thread stopped        SMS_OFFLINE_SERVICING_MANAGER        14/06/2014 14:54:05        8272 (0x2050)
    I'm not sure what file "Failed to find properties of file 4" is referring to, whether dism.exe, an update or the image itself, but immediately after this message appears the image is unmounted. After that this message shows:
    "Completed processing image package PackageID. Status = Failed"
    As I say, there's a lot of information available re Offline Servicing but I haven't found anything with these particular messages.
    If anyone has encountered this before, I'd appreciate any information you have.
    Regards,
    John.

    Hi,
    I think file named 'NO_SMS_ON_DRIVE.SMS’ might be causing this issue. If this file is present in logical drives, then please give it a shot one more time after deleting this file from the logical drives.
    Due to this file, it might be preventing 'smsexec' service to skip the drive when looking for content. So worth a try!
    After deleting this file, you also need to restart 'smsexec' service to reflect the changes. You can also verify from below registry value & ensure that all of your logical drives (specially where SCCMContentLib directory resides) should be listed
    over there 
    'HKLM\Software\Microsoft\SMS\DP\ContentLibUsableDrives'
    Hope this will help!
    Cheers | Navdeep Sidhu

  • Mac Pro Display flicker & failure to boot

    Hello people who are smarter than me.
    I have a 2008 Mac Pro 3.2/ 8CX 8800GT with the original Geforce video card installed.  When I turn the machine on I get a grey screen with a black bar at the top, with no evidence of an actual boot (such as a darker grey apple in the middle of the screen.
    After a minute or so, the screen retains the form of the black and white horizontal bar at the top but adds a rapidly cycling/strobing organge red and yellow flicker reminiscent of the old Monty Python crazy title screens....  It looks like this if you blink fast enough... or take a still photo.
    I live in Haiti, where a fair amount of dust is constantly invading my tower, so I've had dust related issues before with memory... THis time, I don't think it's that.  I've cleaned out the tower with pressurized air, reseated the memory and reseated the video card as well, to no advantage.  The problem first came when the computer was working fine and while my daughter was opening a page on Firefox the screen just started jittering with this little color show.  At the time, though, you could still see the desktop behind all the flickering.  Now the computer doesn't seem to even boot.  If I have to fly to the states to fix this, I'd love to not have to haul the whole machine, so if we can get this down to a couple likely parts that I could travel with, test and replace, that would be great.  This is a hardware issue, right? Would video card failure make sense of this AND the failure to boot?  AND if I do replace it, is the ATI Radeon HD 5770 Graphics Upgrade Kit still the ticket?  If you help me, you'll be helping a lot of Haitians too, as I use this computer for humanitarian work with the Apparent Project.  Help me Obi Geeks, you're my only hope!

    Okay, so after doing all of the above, the computer still takes between 40 seconds and 1 minute or so to boot up, and the VersionCue messages still appear. However I discovered that the "kdcmond cannot retrieve..." messages disappeared after I disabled my ethernet connections. So at least I know that that had nothing to do with the extended boot-up time.
    I have heard that the more RAM you have, the longer it takes to boot due to the RAM count. Since I have 10 GB, maybe this is why?
    I've included the most recent Console messages below:
    22/4/08 9:56:16 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    22/4/08 9:56:16 AM com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    22/4/08 9:56:16 AM com.apple.launchd[1] (org.cups.cups-lpd) Unknown key: SHAuthorizationRight
    22/4/08 9:56:16 AM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    22/4/08 9:56:16 AM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    22/4/08 9:56:39 AM com.apple.SystemStarter[28] Starting Aladdin USB daemon
    22/4/08 9:56:39 AM org.ntp.ntpd[25] Error : nodename nor servname provided, or not known
    22/4/08 9:56:39 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[74]) Exited: Terminated
    22/4/08 9:56:39 AM com.apple.launchctl.Aqua[90] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    22/4/08 9:56:42 AM com.apple.launchd[82] (0x1011e0.VersionCueCS3monitor) Failed to check-in!

  • Bea.jolt.ApplicationException:TPESVCFAIL-application level service failure

    Hi All,
    When I try to open PIA 3 tier I'm getting following error on webpage: "bea.jolt.ApplicationException: TPESVCFAIL - application level service failure".
    Thanks and Regards,
    Vineel.

    This is a very generic error
    See this doc for possible causes and resolutions.
    E-AS: Master Note for "'bea.jolt.ApplicationException: TPESVCFAIL" Error [ID 1201223.1]
    https://support.oracle.com/epmos/faces/DocContentDisplay?id=1201223.1

  • External Service Failure: There was no Content-Type header

    We have developed a web service using WLW and deployed it to weblogic 8.1 (install from scratch), we manage to invoke the service successfully. However, when we deploy it to the weblogic 8.1 server installed through PeopleSoft PIA , we keep getting the 'External Service Failure: There was no Content-Type header' error.
    Does anyone know what are the differences for the weblogic installed through PeopleSoft PIA or how we can get around the error? Thanks!

    Hi Jerioon,
    Which Master Page and Content Type did you use when you created a new page layout with Designer Manager?
    Whether you could provide a screenshot about this issue.
    In addition, here is an article about creating a page layout with Designer Manager, please take a look at:
    http://www.learningsharepoint.com/2013/03/03/create-a-custom-page-layout-in-sharepoint-2013/
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Tuxedo calls procedure and Application Level Service Failure

    hello ,professors all!
    My Tuxedo Service just call an procedure exists in oracle9i, i am sure that the procedure runs ok in oracle9i individually, when it was called by my tuxedo service , it is not ok by first time ,and runs out tp application level Service failure error .But strangely it is ok by second time!
    who can explan it to me and show me a way to solve the difficult problem?
    i spend a lot time wondering the answer!
    Edited by: user9086437 on 2010-9-29 下午9:57

    There are many possible reasons why a database procedure might fail the first time it is executed and succeed after that.
    You should check the Tuxedo ULOG and Oracle database logs for any messages that may point to the problem.
    If there is a LIBTUX_CAT:6205 or LIBTUX_CAT:6206 message in the userlog file then you need to add a tx_open() call to your server's tpsvrinit() or tpsvrthrinit() function.
    If there is an OPENINFO string for the group where your server is running then you are using XA transaction management and should not be connecting to the database in your application code; if there is not an OPENINFO string for the group where your server is running then you need to connect to the database in your application.
    If you set the environment variable
    TMTRACE=*:ulog:dye
    for the server where the failure is happening then Tuxedo will write a trace record of each Tuxedo call and each XA call to the ULOG file. This can be helpful in determining why the failure is happening on the first call, especially if Tuxedo is handling transaction management using XA.
    I hope some of this is of help in debugging the problem.
    Ed

  • Network.service won't boot

    Hi there,
    I just installed arch on my Thinkpad t42p which has a ipw2100 wireless chip. I configured the whole network manually and a corresponding systemd entry. Sometimes the network comes up at boot at sometimes it doesn't. When it doesn't boot I still can start it manually with
    # systemctl start network
    Why could it be that it sometimes boots and sometimes it doesn't?
    Last edited by dead_kenny (2012-11-10 08:35:03)

    Thx for the link skunktrader. Now I fixed the matter by asining a udev rule to the network interfaces as described in the wiki.
    Now I installed arch on an ASUS notebook where the interfaces don't shift during boot but there the network.service also won't boot. I have to start the service manually after boot. The output of
    systemctl /usr/lib/systemd/systemd
    doesn't present the Network Connectivity until I start it manually. Could there be another reason for this? E.g. driver starts to late? How should I look for why systemd cannot start boot the network.service?

  • Error: Halting this cluster node due to unrecoverable service failure

    Our cluster has experienced some sort of fault that has only become apparent today. The origin appears to have been nearly a month ago yet the symptoms have only just manifested.
    The node in question is a standalone instance running a DistributedCache service with local storage. It output the following to stdout on Jan-22:
    Coherence <Error>: Halting this cluster node due to unrecoverable service failure
    It finally failed today with OutOfMemoryError: Java heap space.
    We're running coherence-3.5.2.jar.
    Q1: It looks like this node failed on Jan-22 yet we did not notice. What is the best way to monitor node health?
    Q2: What might the root cause be for such a fault?
    I found the following in the logs:
    2011-01-22 01:18:58,296 Coherence Logger@9216774 3.5.2/463 ERROR 2011-01-22 01:18:58.296/9910749.462 Oracle Coherence EE 3.5.2/463 <Error> (thread=Cluster, member=33): Attempting recovery (due to soft timeout) of Guard{Daemon=DistributedCache}
    2011-01-22 01:18:58,296 Coherence Logger@9216774 3.5.2/463 ERROR 2011-01-22 01:18:58.296/9910749.462 Oracle Coherence EE 3.5.2/463 <Error> (thread=Cluster, member=33): Attempting recovery (due to soft timeout) of Guard{Daemon=DistributedCache}
    2011-01-22 01:19:04,772 Coherence Logger@9216774 3.5.2/463 ERROR 2011-01-22 01:19:04.772/9910755.938 Oracle Coherence EE 3.5.2/463 <Error> (thread=Cluster, member=33): Terminating guarded execution (due to hard timeout) of Guard{Daemon=DistributedCache}
    2011-01-22 01:19:04,772 Coherence Logger@9216774 3.5.2/463 ERROR 2011-01-22 01:19:04.772/9910755.938 Oracle Coherence EE 3.5.2/463 <Error> (thread=Cluster, member=33): Terminating guarded execution (due to hard timeout) of Guard{Daemon=DistributedCache}
    2011-01-22 01:19:05,785 Coherence Logger@9216774 3.5.2/463 ERROR 2011-01-22 01:19:05.785/9910756.951 Oracle Coherence EE 3.5.2/463 <Error> (thread=Termination Thread, member=33): Full Thread Dump
    Thread[Reference Handler,10,system]
    java.lang.Object.wait(Native Method)
    java.lang.Object.wait(Object.java:485)
    java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    Thread[DistributedCache,5,Cluster]
    java.nio.Bits.copyToByteArray(Native Method)
    java.nio.DirectByteBuffer.get(DirectByteBuffer.java:224)
    com.tangosol.io.nio.ByteBufferInputStream.read(ByteBufferInputStream.java:123)
    java.io.DataInputStream.readFully(DataInputStream.java:178)
    java.io.DataInputStream.readFully(DataInputStream.java:152)
    com.tangosol.util.Binary.readExternal(Binary.java:1066)
    com.tangosol.util.Binary.<init>(Binary.java:183)
    com.tangosol.io.nio.BinaryMap$Block.readValue(BinaryMap.java:4304)
    com.tangosol.io.nio.BinaryMap$Block.getValue(BinaryMap.java:4130)
    com.tangosol.io.nio.BinaryMap.get(BinaryMap.java:377)
    com.tangosol.io.nio.BinaryMapStore.load(BinaryMapStore.java:64)
    com.tangosol.net.cache.SerializationPagedCache$WrapperBinaryStore.load(SerializationPagedCache.java:1547)
    com.tangosol.net.cache.SerializationPagedCache$PagedBinaryStore.load(SerializationPagedCache.java:1097)
    com.tangosol.net.cache.SerializationMap.get(SerializationMap.java:121)
    com.tangosol.net.cache.SerializationPagedCache.get(SerializationPagedCache.java:247)
    com.tangosol.net.cache.AbstractSerializationCache$1.getOldValue(AbstractSerializationCache.java:315)
    com.tangosol.net.cache.OverflowMap$Status.registerBackEvent(OverflowMap.java:4210)
    com.tangosol.net.cache.OverflowMap.onBackEvent(OverflowMap.java:2316)
    com.tangosol.net.cache.OverflowMap$BackMapListener.onMapEvent(OverflowMap.java:4544)
    com.tangosol.util.MultiplexingMapListener.entryDeleted(MultiplexingMapListener.java:49)
    com.tangosol.util.MapEvent.dispatch(MapEvent.java:214)
    com.tangosol.util.MapEvent.dispatch(MapEvent.java:166)
    com.tangosol.util.MapListenerSupport.fireEvent(MapListenerSupport.java:556)
    com.tangosol.net.cache.AbstractSerializationCache.dispatchEvent(AbstractSerializationCache.java:338)
    com.tangosol.net.cache.AbstractSerializationCache.dispatchPendingEvent(AbstractSerializationCache.java:321)
    com.tangosol.net.cache.AbstractSerializationCache.removeBlind(AbstractSerializationCache.java:155)
    com.tangosol.net.cache.SerializationPagedCache.removeBlind(SerializationPagedCache.java:348)
    com.tangosol.util.AbstractKeyBasedMap$KeySet.remove(AbstractKeyBasedMap.java:556)
    com.tangosol.net.cache.OverflowMap.removeInternal(OverflowMap.java:1299)
    com.tangosol.net.cache.OverflowMap.remove(OverflowMap.java:380)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$Storage.clear(DistributedCache.CDB:24)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onClearRequest(DistributedCache.CDB:32)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ClearRequest.run(DistributedCache.CDB:1)
    com.tangosol.coherence.component.net.message.requestMessage.DistributedCacheRequest.onReceived(DistributedCacheRequest.CDB:12)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onMessage(Grid.CDB:9)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:136)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onNotify(DistributedCache.CDB:3)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[Finalizer,8,system]
    java.lang.Object.wait(Native Method)
    java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:118)
    java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:134)
    java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    Thread[PacketReceiver,7,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketReceiver.onWait(PacketReceiver.CDB:2)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[RMI TCP Accept-0,5,system]
    java.net.PlainSocketImpl.socketAccept(Native Method)
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
    java.net.ServerSocket.implAccept(ServerSocket.java:453)
    java.net.ServerSocket.accept(ServerSocket.java:421)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:369)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:341)
    java.lang.Thread.run(Thread.java:619)
    Thread[PacketSpeaker,8,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.queue.ConcurrentQueue.waitForEntry(ConcurrentQueue.CDB:16)
    com.tangosol.coherence.component.util.queue.ConcurrentQueue.remove(ConcurrentQueue.CDB:7)
    com.tangosol.coherence.component.util.Queue.remove(Queue.CDB:1)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketSpeaker.onNotify(PacketSpeaker.CDB:62)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[Logger@9216774 3.5.2/463,3,main]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[PacketListener1,8,Cluster]
    java.net.PlainDatagramSocketImpl.receive0(Native Method)
    java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:136)
    java.net.DatagramSocket.receive(DatagramSocket.java:712)
    com.tangosol.coherence.component.net.socket.UdpSocket.receive(UdpSocket.CDB:20)
    com.tangosol.coherence.component.net.UdpPacket.receive(UdpPacket.CDB:4)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketListener.onNotify(PacketListener.CDB:19)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[main,5,main]
    java.lang.Object.wait(Native Method)
    com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:79)
    com.networkfleet.cacheserver.Launcher.main(Launcher.java:122)
    Thread[Signal Dispatcher,9,system]
    Thread[RMI TCP Accept-41006,5,system]
    java.net.PlainSocketImpl.socketAccept(Native Method)
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
    java.net.ServerSocket.implAccept(ServerSocket.java:453)
    java.net.ServerSocket.accept(ServerSocket.java:421)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:369)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:341)
    java.lang.Thread.run(Thread.java:619)
    ThreadCluster
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onWait(Grid.CDB:9)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[TcpRingListener,6,Cluster]
    java.net.PlainSocketImpl.socketAccept(Native Method)
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
    java.net.ServerSocket.implAccept(ServerSocket.java:453)
    java.net.ServerSocket.accept(ServerSocket.java:421)
    com.tangosol.coherence.component.net.socket.TcpSocketAccepter.accept(TcpSocketAccepter.CDB:18)
    com.tangosol.coherence.component.util.daemon.TcpRingListener.acceptConnection(TcpRingListener.CDB:10)
    com.tangosol.coherence.component.util.daemon.TcpRingListener.onNotify(TcpRingListener.CDB:9)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[PacketPublisher,6,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketPublisher.onWait(PacketPublisher.CDB:2)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[RMI TCP Accept-0,5,system]
    java.net.PlainSocketImpl.socketAccept(Native Method)
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
    java.net.ServerSocket.implAccept(ServerSocket.java:453)
    java.net.ServerSocket.accept(ServerSocket.java:421)
    sun.management.jmxremote.LocalRMIServerSocketFactory$1.accept(LocalRMIServerSocketFactory.java:34)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:369)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:341)
    java.lang.Thread.run(Thread.java:619)
    Thread[PacketListenerN,8,Cluster]
    java.net.PlainDatagramSocketImpl.receive0(Native Method)
    java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:136)
    java.net.DatagramSocket.receive(DatagramSocket.java:712)
    com.tangosol.coherence.component.net.socket.UdpSocket.receive(UdpSocket.CDB:20)
    com.tangosol.coherence.component.net.UdpPacket.receive(UdpPacket.CDB:4)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketListener.onNotify(PacketListener.CDB:19)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[Invocation:Management,5,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onWait(Grid.CDB:9)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[DistributedCache:PofDistributedCache,5,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onWait(Grid.CDB:9)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[Invocation:Management:EventDispatcher,5,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher.onWait(Service.CDB:7)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[Termination Thread,5,Cluster]
    java.lang.Thread.dumpThreads(Native Method)
    java.lang.Thread.getAllStackTraces(Thread.java:1487)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    com.tangosol.net.GuardSupport.logStackTraces(GuardSupport.java:791)
    com.tangosol.coherence.component.net.Cluster.onServiceFailed(Cluster.CDB:5)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid$Guard.terminate(Grid.CDB:17)
    com.tangosol.net.GuardSupport$2.run(GuardSupport.java:652)
    java.lang.Thread.run(Thread.java:619)
    2011-01-22 01:19:05,785 Coherence Logger@9216774 3.5.2/463 ERROR 2011-01-22 01:19:05.785/9910756.951 Oracle Coherence EE 3.5.2/463 <Error> (thread=Termination Thread, member=33): Full Thread Dump
    Thread[Reference Handler,10,system]
    java.lang.Object.wait(Native Method)
    java.lang.Object.wait(Object.java:485)
    java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    Thread[DistributedCache,5,Cluster]
    java.nio.Bits.copyToByteArray(Native Method)
    java.nio.DirectByteBuffer.get(DirectByteBuffer.java:224)
    com.tangosol.io.nio.ByteBufferInputStream.read(ByteBufferInputStream.java:123)
    java.io.DataInputStream.readFully(DataInputStream.java:178)
    java.io.DataInputStream.readFully(DataInputStream.java:152)
    com.tangosol.util.Binary.readExternal(Binary.java:1066)
    com.tangosol.util.Binary.<init>(Binary.java:183)
    com.tangosol.io.nio.BinaryMap$Block.readValue(BinaryMap.java:4304)
    com.tangosol.io.nio.BinaryMap$Block.getValue(BinaryMap.java:4130)
    com.tangosol.io.nio.BinaryMap.get(BinaryMap.java:377)
    com.tangosol.io.nio.BinaryMapStore.load(BinaryMapStore.java:64)
    com.tangosol.net.cache.SerializationPagedCache$WrapperBinaryStore.load(SerializationPagedCache.java:1547)
    com.tangosol.net.cache.SerializationPagedCache$PagedBinaryStore.load(SerializationPagedCache.java:1097)
    com.tangosol.net.cache.SerializationMap.get(SerializationMap.java:121)
    com.tangosol.net.cache.SerializationPagedCache.get(SerializationPagedCache.java:247)
    com.tangosol.net.cache.AbstractSerializationCache$1.getOldValue(AbstractSerializationCache.java:315)
    com.tangosol.net.cache.OverflowMap$Status.registerBackEvent(OverflowMap.java:4210)
    com.tangosol.net.cache.OverflowMap.onBackEvent(OverflowMap.java:2316)
    com.tangosol.net.cache.OverflowMap$BackMapListener.onMapEvent(OverflowMap.java:4544)
    com.tangosol.util.MultiplexingMapListener.entryDeleted(MultiplexingMapListener.java:49)
    com.tangosol.util.MapEvent.dispatch(MapEvent.java:214)
    com.tangosol.util.MapEvent.dispatch(MapEvent.java:166)
    com.tangosol.util.MapListenerSupport.fireEvent(MapListenerSupport.java:556)
    com.tangosol.net.cache.AbstractSerializationCache.dispatchEvent(AbstractSerializationCache.java:338)
    com.tangosol.net.cache.AbstractSerializationCache.dispatchPendingEvent(AbstractSerializationCache.java:321)
    com.tangosol.net.cache.AbstractSerializationCache.removeBlind(AbstractSerializationCache.java:155)
    com.tangosol.net.cache.SerializationPagedCache.removeBlind(SerializationPagedCache.java:348)
    com.tangosol.util.AbstractKeyBasedMap$KeySet.remove(AbstractKeyBasedMap.java:556)
    com.tangosol.net.cache.OverflowMap.removeInternal(OverflowMap.java:1299)
    com.tangosol.net.cache.OverflowMap.remove(OverflowMap.java:380)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$Storage.clear(DistributedCache.CDB:24)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onClearRequest(DistributedCache.CDB:32)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ClearRequest.run(DistributedCache.CDB:1)
    com.tangosol.coherence.component.net.message.requestMessage.DistributedCacheRequest.onReceived(DistributedCacheRequest.CDB:12)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onMessage(Grid.CDB:9)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:136)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onNotify(DistributedCache.CDB:3)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[Finalizer,8,system]
    java.lang.Object.wait(Native Method)
    java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:118)
    java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:134)
    java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    Thread[PacketReceiver,7,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketReceiver.onWait(PacketReceiver.CDB:2)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[RMI TCP Accept-0,5,system]
    java.net.PlainSocketImpl.socketAccept(Native Method)
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
    java.net.ServerSocket.implAccept(ServerSocket.java:453)
    java.net.ServerSocket.accept(ServerSocket.java:421)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:369)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:341)
    java.lang.Thread.run(Thread.java:619)
    Thread[PacketSpeaker,8,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.queue.ConcurrentQueue.waitForEntry(ConcurrentQueue.CDB:16)
    com.tangosol.coherence.component.util.queue.ConcurrentQueue.remove(ConcurrentQueue.CDB:7)
    com.tangosol.coherence.component.util.Queue.remove(Queue.CDB:1)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketSpeaker.onNotify(PacketSpeaker.CDB:62)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[Logger@9216774 3.5.2/463,3,main]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[PacketListener1,8,Cluster]
    java.net.PlainDatagramSocketImpl.receive0(Native Method)
    java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:136)
    java.net.DatagramSocket.receive(DatagramSocket.java:712)
    com.tangosol.coherence.component.net.socket.UdpSocket.receive(UdpSocket.CDB:20)
    com.tangosol.coherence.component.net.UdpPacket.receive(UdpPacket.CDB:4)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketListener.onNotify(PacketListener.CDB:19)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[main,5,main]
    java.lang.Object.wait(Native Method)
    com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:79)
    com.networkfleet.cacheserver.Launcher.main(Launcher.java:122)
    Thread[Signal Dispatcher,9,system]
    Thread[RMI TCP Accept-41006,5,system]
    java.net.PlainSocketImpl.socketAccept(Native Method)
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
    java.net.ServerSocket.implAccept(ServerSocket.java:453)
    java.net.ServerSocket.accept(ServerSocket.java:421)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:369)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:341)
    java.lang.Thread.run(Thread.java:619)
    ThreadCluster
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onWait(Grid.CDB:9)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[TcpRingListener,6,Cluster]
    java.net.PlainSocketImpl.socketAccept(Native Method)
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
    java.net.ServerSocket.implAccept(ServerSocket.java:453)
    java.net.ServerSocket.accept(ServerSocket.java:421)
    com.tangosol.coherence.component.net.socket.TcpSocketAccepter.accept(TcpSocketAccepter.CDB:18)
    com.tangosol.coherence.component.util.daemon.TcpRingListener.acceptConnection(TcpRingListener.CDB:10)
    com.tangosol.coherence.component.util.daemon.TcpRingListener.onNotify(TcpRingListener.CDB:9)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[PacketPublisher,6,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketPublisher.onWait(PacketPublisher.CDB:2)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[RMI TCP Accept-0,5,system]
    java.net.PlainSocketImpl.socketAccept(Native Method)
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
    java.net.ServerSocket.implAccept(ServerSocket.java:453)
    java.net.ServerSocket.accept(ServerSocket.java:421)
    sun.management.jmxremote.LocalRMIServerSocketFactory$1.accept(LocalRMIServerSocketFactory.java:34)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:369)
    sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:341)
    java.lang.Thread.run(Thread.java:619)
    Thread[PacketListenerN,8,Cluster]
    java.net.PlainDatagramSocketImpl.receive0(Native Method)
    java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:136)
    java.net.DatagramSocket.receive(DatagramSocket.java:712)
    com.tangosol.coherence.component.net.socket.UdpSocket.receive(UdpSocket.CDB:20)
    com.tangosol.coherence.component.net.UdpPacket.receive(UdpPacket.CDB:4)
    com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketListener.onNotify(PacketListener.CDB:19)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    java.lang.Thread.run(Thread.java:619)
    Thread[Invocation:Management,5,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onWait(Grid.CDB:9)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[DistributedCache:PofDistributedCache,5,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onWait(Grid.CDB:9)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[Invocation:Management:EventDispatcher,5,Cluster]
    java.lang.Object.wait(Native Method)
    com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:18)
    com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher.onWait(Service.CDB:7)
    com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:39)
    java.lang.Thread.run(Thread.java:619)
    Thread[Termination Thread,5,Cluster]
    java.lang.Thread.dumpThreads(Native Method)
    java.lang.Thread.getAllStackTraces(Thread.java:1487)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    com.tangosol.net.GuardSupport.logStackTraces(GuardSupport.java:791)
    com.tangosol.coherence.component.net.Cluster.onServiceFailed(Cluster.CDB:5)
    com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid$Guard.terminate(Grid.CDB:17)
    com.tangosol.net.GuardSupport$2.run(GuardSupport.java:652)
    java.lang.Thread.run(Thread.java:619)
    2011-01-22 01:19:06,738 Coherence Logger@9216774 3.5.2/463 INFO 2011-01-22 01:19:06.738/9910757.904 Oracle Coherence EE 3.5.2/463 <Info> (thread=main, member=33): Restarting Service: DistributedCache
    2011-01-22 01:19:06,738 Coherence Logger@9216774 3.5.2/463 INFO 2011-01-22 01:19:06.738/9910757.904 Oracle Coherence EE 3.5.2/463 <Info> (thread=main, member=33): Restarting Service: DistributedCache
    2011-01-22 01:19:06,738 Coherence Logger@9216774 3.5.2/463 ERROR 2011-01-22 01:19:06.738/9910757.904 Oracle Coherence EE 3.5.2/463 <Error> (thread=main, member=33): Failed to restart services: java.lang.IllegalStateException: Failed to unregister: Distr
    butedCache{Name=DistributedCache, State=(SERVICE_STARTED), LocalStorage=enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=16, BackupPartitions=16}
    2011-01-22 01:19:06,738 Coherence Logger@9216774 3.5.2/463 ERROR 2011-01-22 01:19:06.738/9910757.904 Oracle Coherence EE 3.5.2/463 <Error> (thread=main, member=33): Failed to restart services: java.lang.IllegalStateException: Failed to unregister: Distr
    butedCache{Name=DistributedCache, State=(SERVICE_STARTED), LocalStorage=enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=16, BackupPartitions=16}

    Hi
    It seems like the problem in this case is the call to clear() which will try to load all entries stored in the overflow scheme to emit potential cache events to listeners. This probably requires much more memory than there is Java heap available, hence the OOM.
    Our recommendation in this case is to call destroy() since this will bypass the even firing.
    /Charlie

  • Failure to boot after restarting, no distinct pattern.

    My Mac Pro has an issue where every third or fourth restart the mac will fail to boot, needing me to hold the power button until it turns off.
    I get the grey apple and the spinning progress wheel for 30 seconds, then the screen stays grey and the apple is replaced by what looks like a circle with a diagonal bar through it. I believe this means something along the lines of 'No Bootable Directory Found'.
    Before the 10.5.2 update this happened almost every restart. I'm using a Samsung Spinpoint 750gig drive as my boot drive, and the stock 500gig drive as a media disk.
    I have tried several solutions. Repair permissions, Disk Utility from CD and run verify and repair disk, AHT extensive, TechTool Deluxe with surface scan, Format and Reinstall (twice), Memtest, NVRam.
    Could the Samsung drive be bad even though I can't get any software to find a fault?

    Here is a console log of the most recent failure to boot. The events here are a restart, a failure to boot, a forced off and a power on. Hopefully this helps.
    27/02/2008 02:31:00 com.apple.launchd[68] (0x10a650.Locum[2615]) Exited: Terminated
    27/02/2008 02:31:57 com.apple.launchd[68] ([0x0-0xa00a].com.apple.dock[94]) Stray process with PGID equal to this dead job: PID 2586 PPID 1 DashboardClient
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] *Wakein::CancelEvents: requested event type: wakepoweron
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] *Wakein::CancelEvents: requested app name: com.elgato.eyetv
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] *Wakein::CancelEvents: canceling wakepoweron - com.elgato.eyetv - 02/27/08 21:35:00
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] *Wakein: 0 entries in power event schedule table
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] *Wakein::ScheduleEvent: requested event type: wakepoweron
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] *Wakein::ScheduleEvent: requested app name: com.elgato.eyetv
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] *Wakein::ScheduleEvent: requested date: 02/27/08 21:35:00
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] *Wakein: 1 entries in power event schedule table
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] * date: 02/27/08 21:35:00
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] * appName: com.elgato.eyetv
    27/02/2008 02:31:57 [0x0-0x13013].com.elgato.eyetvhelper[106] * eventType: wakepoweron
    27/02/2008 02:32:07 com.apple.loginwindow[23] Shutdown NOW!
    27/02/2008 02:32:07 com.apple.loginwindow[23] System shutdown time has arrived
    27/02/2008 02:32:07 com.apple.SystemStarter[16] Starting Aladdin USB daemon
    27/02/2008 02:32:08 com.apple.SystemStarter[16] process already running on this system - daemon terminated!
    27/02/2008 02:34:04 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    27/02/2008 02:34:04 com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    27/02/2008 02:34:04 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    27/02/2008 02:34:04 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    27/02/2008 02:34:22 com.wacom.wacomtablet[79] TabletDriver[79]: ISO keyboard: OSI
    27/02/2008 02:34:23 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[80]) Exited: Terminated
    27/02/2008 02:34:23 com.apple.launchd[1] ([0x0-0x7007].com.wacom.TabletDriver[87]) Exited: Terminated
    27/02/2008 02:34:23 com.apple.launchd[1] (com.wacom.wacomtablet[79]) Exited with exit code: 255
    27/02/2008 02:34:23 com.apple.launchctl.Aqua[88] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    27/02/2008 02:34:23 com.apple.launchd[69] (0x1010d0.VersionCueCS3monitor) Failed to check-in!
    27/02/2008 02:34:24 com.wacom.wacomtablet[89] TabletDriver[89]: ISO keyboard: OSI
    27/02/2008 02:34:31 [0x0-0x13013].com.elgato.eyetvhelper[115] EyeTV Helper version 3.0 build 267
    27/02/2008 02:34:33 com.apple.SystemStarter[16] Starting Aladdin USB daemon
    27/02/2008 02:38:48 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein::CancelEvents: requested event type: wakepoweron
    27/02/2008 02:38:48 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein::CancelEvents: requested app name: com.elgato.eyetv
    27/02/2008 02:38:48 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein::CancelEvents: canceling wakepoweron - com.elgato.eyetv - 02/27/08 21:35:00
    27/02/2008 02:38:49 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein: 0 entries in power event schedule table
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein::CancelEvents: requested event type: wakepoweron
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein::CancelEvents: requested app name: com.elgato.eyetv
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein: 0 entries in power event schedule table
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein::ScheduleEvent: requested event type: wakepoweron
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein::ScheduleEvent: requested app name: com.elgato.eyetv
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein::ScheduleEvent: requested date: 02/27/08 21:35:00
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] *Wakein: 1 entries in power event schedule table
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] * date: 02/27/08 21:35:00
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] * appName: com.elgato.eyetv
    27/02/2008 02:38:51 [0x0-0x1b01b].com.elgato.eyetv[158] * eventType: wakepoweron
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::CancelEvents: requested event type: wakepoweron
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::CancelEvents: requested app name: com.elgato.eyetv
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::CancelEvents: canceling wakepoweron - com.elgato.eyetv - 02/27/08 21:35:00
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein: 0 entries in power event schedule table
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::ScheduleEvent: requested event type: wakepoweron
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::ScheduleEvent: requested app name: com.elgato.eyetv
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::ScheduleEvent: requested date: 02/27/08 21:35:00
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein: 1 entries in power event schedule table
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] * date: 02/27/08 21:35:00
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] * appName: com.elgato.eyetv
    27/02/2008 02:39:38 [0x0-0x13013].com.elgato.eyetvhelper[115] * eventType: wakepoweron
    27/02/2008 02:39:48 com.apple.loginwindow[23] Shutdown NOW!
    27/02/2008 02:39:48 com.apple.loginwindow[23] System shutdown time has arrived
    27/02/2008 02:39:48 com.apple.SystemStarter[16] Starting Aladdin USB daemon
    27/02/2008 02:39:48 com.apple.SystemStarter[16] process already running on this system - daemon terminated!
    27/02/2008 02:40:11 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    27/02/2008 02:40:11 com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    27/02/2008 02:40:11 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    27/02/2008 02:40:11 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    27/02/2008 02:40:30 com.wacom.wacomtablet[79] TabletDriver[79]: ISO keyboard: OSI
    27/02/2008 02:40:30 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[80]) Exited: Terminated
    27/02/2008 02:40:30 com.apple.launchd[1] ([0x0-0x7007].com.wacom.TabletDriver[87]) Exited: Terminated
    27/02/2008 02:40:30 com.apple.launchd[1] (com.wacom.wacomtablet[79]) Exited with exit code: 255
    27/02/2008 02:40:30 com.apple.launchctl.Aqua[88] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    27/02/2008 02:40:30 Dock[97] _DESCRegisterDockExtraClient failed 268435459
    27/02/2008 02:40:31 com.apple.launchd[69] (0x1010d0.VersionCueCS3monitor) Failed to check-in!
    27/02/2008 02:40:31 com.wacom.wacomtablet[89] TabletDriver[89]: ISO keyboard: OSI
    27/02/2008 02:40:37 [0x0-0x13013].com.elgato.eyetvhelper[115] EyeTV Helper version 3.0 build 267
    27/02/2008 02:40:40 com.apple.SystemStarter[16] Starting Aladdin USB daemon
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::CancelEvents: requested event type: wakepoweron
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::CancelEvents: requested app name: com.elgato.eyetv
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::CancelEvents: canceling wakepoweron - com.elgato.eyetv - 02/27/08 21:35:00
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein: 0 entries in power event schedule table
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::ScheduleEvent: requested event type: wakepoweron
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::ScheduleEvent: requested app name: com.elgato.eyetv
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein::ScheduleEvent: requested date: 02/27/08 21:35:00
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] *Wakein: 1 entries in power event schedule table
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] * date: 02/27/08 21:35:00
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] * appName: com.elgato.eyetv
    27/02/2008 02:40:45 [0x0-0x13013].com.elgato.eyetvhelper[115] * eventType: wakepoweron
    27/02/2008 02:40:45 com.apple.loginwindow[23] Shutdown NOW!
    27/02/2008 02:40:45 com.apple.loginwindow[23] System shutdown time has arrived
    27/02/2008 02:40:45 com.apple.SystemStarter[16] Starting Aladdin USB daemon
    27/02/2008 02:40:45 com.apple.SystemStarter[16] process already running on this system - daemon terminated!
    27/02/2008 04:06:51 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    27/02/2008 04:06:51 com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    27/02/2008 04:06:51 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    27/02/2008 04:06:51 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    27/02/2008 04:07:07 com.wacom.wacomtablet[79] TabletDriver[79]: ISO keyboard: OSI
    27/02/2008 04:07:07 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[80]) Exited: Terminated
    27/02/2008 04:07:07 com.apple.launchd[1] ([0x0-0x7007].com.wacom.TabletDriver[87]) Exited: Terminated
    27/02/2008 04:07:07 com.apple.launchd[1] (com.wacom.wacomtablet[79]) Exited with exit code: 255
    27/02/2008 04:07:07 com.apple.launchctl.Aqua[88] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    27/02/2008 04:07:07 Dock[96] _DESCRegisterDockExtraClient failed 268435459
    27/02/2008 04:07:08 com.wacom.wacomtablet[89] TabletDriver[89]: ISO keyboard: OSI
    27/02/2008 04:07:08 com.apple.launchd[73] (0x1010d0.VersionCueCS3monitor) Failed to check-in!
    27/02/2008 04:07:15 [0x0-0x13013].com.elgato.eyetvhelper[115] EyeTV Helper version 3.0 build 267
    27/02/2008 04:07:18 com.apple.SystemStarter[16] Starting Aladdin USB daemon

  • Mac OS services failure

    this is for an iMac flat panel display
    after installing many upgrades and rebooting get black screen error"kernal panic cant find driver for ACPI.....jan 3-2006 kernal"
    Iv tried 4 or 5 rescue CDs, repaired permissions,even Disk warrior 4.0 wont repair,says "Disk warrior 4 rebuilt directory,but cannot replace due to a mac OS services failure"
    HELP??
    mac OS services failure

    Hello again:
    If DW cannot repair the problem, you need to either reinstall OS X (if you are able, I would use an archive and install) or take the computer to either an Apple store or to an Apple-certified technician for help.
    Barry

  • TPESVCFAIL - application level service failure

    #include <atmi.h>
    #include <fml32.h>
    #include <fml1632.h>
    #include <tpadm.h>
    #include <stdio.h>
    #include <stdlib.h>
    int main(void)
    long len = 0;
    char lmid[16];
    char serverName[64];
    char srvID[64];
    char srvGrp[16];
    char rqAddr[16];
    char totWorkl[16];
    char state[16];
    char numReq[16];
    if (tpinit((TPINIT*)NULL) == -1) {
    fprintf(stderr, "tpint error\n");
    exit(1);
    int flags = MIB_LOCAL;
    FBFR32* rqbuf = (FBFR32*)tpalloc(FMLTYPE32, NULL, 0);
    Finit32(rqbuf, (FLDLEN32)Fsizeof32(rqbuf));
    Fchg32(rqbuf,TA_OPERATION, 0, "GET", 0);
    Fchg32(rqbuf, TA_CLASS, 0, "T_SERVER", 0);
    Fchg32(rqbuf, TA_FLAGS, 0, (char*)&flags, 0); **/+/if i add this line: compile succeed, but run wrong!!! error info: TPESVCFAIL - application level service failure+**
    if (tpcall(".TMIB",(char*)rqbuf, 0, (char**)&rqbuf, &len, 0) != -1)
    int i, j;
    i = Foccur32(rqbuf, TA_SERVERNAME);
    for (j = 0; j < i; ++j) {
    Fget32(rqbuf, TA_SERVERNAME, j, serverName, 0 );
    Fget32(rqbuf, TA_SRVID, j, srvID, 0);
    Fget32(rqbuf, TA_STATE, j, state, 0);
    Fget32(rqbuf, TA_SRVGRP, j, srvGrp, 0);
    Fget32(rqbuf, TA_RQADDR, j, rqAddr, 0);
    Fget32(rqbuf, TA_TOTWORKL, j, totWorkl, 0);
    Fget32(rqbuf, TA_NUMREQ, j, numReq, 0);
    if (strcmp(state, "ACTIVE") == 0)
    printf("%s,%s,%s,%s,%s,%s,%s\n",serverName, srvID, state, srvGrp, rqAddr, totWorkl, numReq);
    else{
    printf("%s\n", tpstrerror(tperrno));
    exit(1);
    tpfree((char*)rqbuf);
    tpterm();
    return 0;
    how to get local information ,not global information ?
    thinks!!!
    Edited by: 998527 on 2013-4-7 上午7:27

    See the TA_FLAGS in the docs;
    TA_FLAGS
    Long valued FML32 field identifying generic and component MIB specific flag values. Component MIB specific values that may be set in this attribute are defined within each component MIB reference page. Generic flag values and uses are listed below.
    MIB_LOCAL
    This flag is used to modify retrievals from certain classes defined in this MIB. For a number of classes in this MIB, there exists both global information (available at any site in an active application) and local information (available on the particular site where the object is active). Requests to retrieve information from these classes will by default retrieve only the global information and not the local for efficiency. If the application user is willing to wait for local information to be collected, possibly from multiple sites, this flag should be set on the retrieval request. Classes with local information have local attributes listed last in the attribute table with a subheading indicating that they are local attributes. Classes which have only local information will automatically default to retrieving local information even if this flag value is not set.
    MIB_PREIMAGE
    indicates that a pre-image check must be passed before a SET operation will be performed. A pre-image check insures that occurrence 0 of any MIB specific class attributes match the existing object. If so, the object is updated using occurrence 1 of any MIB specific class attributes. Attributes occurring less than two times are not considered for pre-image checking. Multiply occurring fields are checked if their associated count attribute is specified twice.
    MIB_SELF
    This flag is used as a shorthand to indicate that identification attributes for the client or server originating the request should be added to the request buffer prior to processing. For clients, TA_CLIENTID is added and for servers, TA_GRPNO and TA_SRVID are added.

  • Serious service failure in zip code 70119 / 70122 at the New Orleans Jazz Fest Weekend 1

    I experienced total service failure in zip code 70119 & 70122 at the New Orleans Jazz Fest.  No send / receive of data, voice or text.  I use an iPhone 5s running the latest OS.  I had better service during all hurricanes, except Katrina, of course.  The only evidence I have of this are screenshots of pinwheeling texts and Facebook posts.  Oh, and I have a very ****** off wife for not being able to contact me.  This was a first, but it was a weekend-long frustrating affair.  Please address this before next weekend's Jazzfest.  I'm not the only Verizon customer pinwheeling.

    I experienced total service failure in zip code 70119 & 70122 at the New Orleans Jazz Fest.  No send / receive of data, voice or text.  I use an iPhone 5s running the latest OS.  I had better service during all hurricanes, except Katrina, of course.  The only evidence I have of this are screenshots of pinwheeling texts and Facebook posts.  Oh, and I have a very ****** off wife for not being able to contact me.  This was a first, but it was a weekend-long frustrating affair.  Please address this before next weekend's Jazzfest.  I'm not the only Verizon customer pinwheeling.

  • How to make a service available at boot.

    Can someone tell me how to make a service available at boot time via smf ? The question is for a generic service ( network/telnet for example ) and for a site one.
    Is it enough to enable it via svcadm ?
    Thanks.

    yeah all you need to do is
    svcadm enable /network/telnet
    this will enable the service then and next time when you boot the system
    (or i.e. svcadm disable apache2 if you want to disable the httpd)
    have you tried man on svcadm?
    Sharif

Maybe you are looking for

  • Open PO and open PR

    hi frd. help me in this reply. parameter : plant,material no,company code,storage location. display: material no, material desc, UOM, ROL, warehouse, open po, open po qty, open pr no, open pr qty. how to do this guide me in this report. urgent..

  • Home Sharing menu, not showing up in iTunes

    I have home sharing turned on in iTunes, but the menu does not show up on the left side. How do I get it to show up?

  • Will charger that comes with iPhone 3GS charge my new iPod classic 160?

    I have an iPhone 3GS; which comes with a charger. I recently purchased a new iPod classic 160; which doesn't come with a charger. Will the iPhone charger charge my iPod without damaging it? It appears to work (shows it's charging), but I want to make

  • Mac OS X and Debian Linux LAN research.

    Mac OS X and Debian Linux LAN research. I am currently doing the Google shuffle and am posting this to try to make sure I don't miss something important. I recently expunged Windoze from the PC on my LAN and installed Debian Etch (testing, kernal 2.6

  • Resources for Using Premiere Pro CS4 and Encore to author Blu Ray DVDs

    I am getting ready to author some Blu Ray DVDs consisting of HD video  of various aspect ratios and formats on the same disc. I have Premiere  Pro sequences that are either 720p30 and 1080i (60i). The 720p video is  1280x720 (1.0) 60fps. The 1080 foo