Shutting down a write-behind cluster

Hi,
What is the best way of shutting down a cluster with caches that are write-behind enabled? Is there a safe way to make sure the write-behind queue is cleared before taking the nodes down? Will CacheFactory.shutDown() take care of this? Also is it possible shutdown gracefully without the nodes redistributing the data? If data gets redistributed, the last node I am shutting down would run out of memory. Shoud I destroy each cache before shutting down? Pls advise.
Regards,
Sairam

Hi Sairam,
first you have to block producers.
Afterwards you can ensure that the write-behind queue is written out on all nodes by (optionally calling the flush method on the read-write backing map on each node e.g. from an Invocation and then) waiting for JMX showing that the write-behind queue is empty on each node.
Once there are no dirty entries in the wb queue, then you can just shut down consumers (anyone who reads from the cache).
After ensuring that no one wants to read from the cache, there is no point in having the data in the cache, therefore you can clear the caches with NamedCache.clear().
After this who cares that there is a redistribution of entry partitions.
No need to destroy() the caches, clear()-ing them is enough, except if you have backing map listeners which would hold up the execution of the clear() method.
Best regards,
Robert

Similar Messages

  • Failover cluster not cleanly shutting down service

    I've got a two node 2008 R2 failover cluster.  I have a single service being managed by it that I configured just as a generic service.  The failover works perfectly when the service is stopped, or when one of the machines goes down, and the immediate
    failback I have configured works perfectly in both scenarios as well.
    However, there's an issue when I take the networking down on the preferred owner of the service.  As far as I can tell (this is the first time I've tried failover clustering, so I'm learning), when I take the networking down, the cluster service shuts
    down, and in turn shuts down the service I've told it to manage.  At this point, when the services aren't running, the service fails over to the secondary as intended.  The problem shows up when I turn the networking back on.  The service tries
    and fails to start on the primary (as many times as I've configured it to try), and then eventually gives up and goes back to the secondary.
    The reason for this, examining logs for the service, is that the required port is already in use.  I checked some more, and sure enough, when I take the networking offline the service gets shut down, but the executable is still running.  This is
    repeatable every time.  When I just stop the service, though, the executables go away.  So it's something to do specifically with how the managed service gets shut down *when it's shut down due to the cluster service stopping*.  For some reason
    it's not cleaning up that associated executable.
    Any ideas as to why this is happening and how to fix/work around it would be extremely welcome.  Thank you!

    Try to generate cluster log using closter log /g /copy:<path to a local folder>. You might need to bump up log verbosity using cluster /prop ClusterLogLevel=5 (you can check current level using cluster /prop).
    You also can look at the SCM diagnostic channel in the event viewer. Start eventvwr. Wait for the clock icon on the Application and Services Logs to go away. Once the clock icon is gone select this entry and in the menu check Show Analytic and Debug Logs.
    Now expand to the SCM provider located at
    Application and Services Logs\Microsoft\Service Control Manager Performance Diagnostic Provider\Diagnostic.
    or Microsoft-Windows-Services/Diagnostic
    Enable the log, run repro, disable the log. After that you should see events from the SCM showing you your service state transitions.
    The terminate parameters do not seems to be configurable. I can think of two ways fixing the issue
    - Writing your own cluster resource DLL where you can implement your own policies. THis would be a place to start http://blogs.msdn.com/b/clustering/archive/2010/08/24/10053405.aspx.
    - This option is assuming you cannot change the source code of the service to kill orphaned child processes on startup so you have to clenup using some other means. Create another service and make your service dependent on this new service. This new serice
    must be much faster in responding do the SCM commands. On start of this service you using PSAPI enumirate all processes running on the machine and kill the orphaned child processes. You probably should be able to acheve something similar using GenScript resource
    + VB script that does the cleanup.
    Regards, Vladimir Petter, Microsoft Corporation

  • Shutting down multiple partitions

    Hi Wayne,
    Well, I wouldn't expect Forte to shut down your C processes if they are
    communicating via External Connection. :-)
    If you can make your C stuff "shut-down" aware, then just send them a
    message telling them to shut down, and write the TOOL code which does the
    equivalent of your econsole shutdown, and there you are.
    All my best,
    Geoff
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Wayne,
    Well, I wouldn't expect Forte to shut down your C processes if they are
    communicating via External Connection. :-)
    If you can make your C stuff "shut-down" aware, then just send them a
    message telling them to shut down, and write the TOOL code which does the
    equivalent of your econsole shutdown, and there you are.
    All my best,
    Geoff
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Write behind cache, DB down, when should the system stop taking new data in

    Hello:
    We are trying to use Coherence for our custom ESB, which is brokering payloads of various size between consumer and provider applications.
    Before Coherence, stopping our DB meant organization-wide outage for critically important business services.
    Since we have at least 40G of RAM in production environment, we believe that our app
    can use Coherence write-behind option for tolerating at least several hours worth of DB outage.
    We are currently using a near cache backed by distributed cache in write-behind mode.
    9 business service JVMs (storage enabled=false) use 30 storage enabled JVMs.
    IMPORTANT: We need to create an automated alerting facility determining when
    amount of unsaved data reaches critical level since DB goes down. This alert should help us decide when our application stops accepting inbound traffic.
    It is hard to use QueueSize parameter for that because our payload memory footprint can vary from 1KB to 3MB.
    We do not expire any entries in order to enable support queries against the cache during DB outage.
    Our experiments with trying various flavors of overflow-scheme resulted in OutOfMemoryError, therefore
    we decided to implement RAM-only cache as a first step.
    <near-scheme>
    <scheme-name>message_payload_scheme</scheme-name>
    <front-scheme>
    <local-scheme>
    <scheme-ref>limited_entities_front_scheme</scheme-ref>
    <high-units>100</high-units>
    </local-scheme>
    </front-scheme>
    <back-scheme>
    <distributed-scheme>
    <backing-map-scheme>
    <read-write-backing-map-scheme>
    <internal-cache-scheme>
    <local-scheme>
    <scheme-ref>limited_bytes_scheme</scheme-ref>
    <high-units>199229440</high-units>
    </local-scheme>
    </internal-cache-scheme>
    <cachestore-scheme>
    <class-scheme>
    <class-name>com.comp.MessagePayloadStore</class-name>
    </class-scheme>
    </cachestore-scheme>
    <read-only>false</read-only>
    <write-delay-seconds>3</write-delay-seconds>
    <write-requeue-threshold>2147483646</write-requeue-threshold>
    </read-write-backing-map-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>
    </back-scheme>
    </near-scheme>
    <local-scheme>
    <scheme-name>limited_entities_front_scheme</scheme-name>
    <eviction-policy>LRU</eviction-policy>
    <unit-calculator>FIXED</unit-calculator>
    </local-scheme>
    <local-scheme>
    <scheme-name>limited_bytes_scheme</scheme-name>
    <eviction-policy>HYBRID</eviction-policy>
    <unit-calculator>BINARY</unit-calculator>
    </local-scheme>

    Good info ... I feel like I need to restate my original question along with a couple of new questions caused by the discussion above.
    Q1. Does Coherence evict 'dirty', or 'queued', or 'unsaved' objects for cache configuration provided above?
    The answer should be 'NO', otherwise Coherence is unsafe to use as a system of record,
    it should not just drop unsaved information on the floor.
    Q2. What happens to the front tier of the near+partitioned write behind cache described above when amount of unsaved data exceeds max cache capacity defined via high-units?
    I would expect that map.put starts throwing exceptions: cache storage is full, so it should not accept more data
    Q3. How can I determine a moment when amount of dirty data in bytes(!), not in objects, hits 85% of
    max allowed cache capasity configured in bytes (using high-units param and BINARY calculator).
    'DirtyUnits' counter can probably be built with some lower-level Coherence API. Can we use
    this API?
    Please, understand, that we purchased Coherence for reliability, for making our
    system independent from short DB outages, for keeping our business services up
    and running when DBA need some time for admin operations like rebuilding an index.
    Performance benefits are secondary and are not as obvious for our system which
    uses primary keys only and has a well-tuned co-located Oracle back-end.
    We simply cannot put Coherence to production unless we prove that Coherence
    can reliably hold the data and give us information about approaching crisis
    (the cache full of unsaved data).
    If possible, forward this message to Cameron Purdy,
    who was presenting Coherence to our team several moths ago.
    Thanks,
    Vasili Smaliak
    Applications Architect, Enterprise App Integration
    GMAC ResCap
    [email protected]

  • The Cluster service is shutting down because quorum was lost

    Hi, we recently experienced the above issue and after looking for explanations I haven't been able to find any satisfying answers when other people have posted this issue.
    Our problem is as follows:
    2 node 2008R2 cluster running SQL 2012
    Each node is a HP BL460c running in a HP C7000 Blade Chassis.
    We were updating the flexfabric cards on one of the chassis.  The other chassis had been patched the previous week with no problems. 
    During the update process the flexfabric cards, which hold the Ethernet and FC connections, reboot so before work had begun all active cluster services had been failed over to the node in the chassis not being worked on.  However despite this the cluster
    service shut down on this one particular cluster.  All other clusters running across these 2 chassis continued to run as expected.
    As other people have posted before we saw the following errors in the system log.
    1564: File share witness resource 'File Share Witness' failed to arbitrate for the file share
    1069: Cluster resource 'File Share Witness' in clustered service or application 'Cluster Group' failed.
    1172: The Cluster service is shutting down because quorum was lost. This could be due to the loss of network connectivity between some or all nodes in the cluster, or a failover of the witness disk.
    Run the Validate a Configuration wizard to check your network configuration. If the condition persists, check for hardware or software errors related to the network adapter. Also check for failures in any other network components to which the node is connected
    such as hubs, switches, or bridges.
    However we cant understand what could cause this to happen when the service is running on the node in the chassis not being updated, especially when the same update was performed the week before with no issues.  How can both nodes lose connectivity
    to the File Share Witness at the same time?
    Cluster Validation tests run fine and don't highlight any issues.  The file share witness is accessible from both servers.

    Hi,
    Please confirm you have install the Recommended hotfixes and updates for Windows Server 2008 R2 SP1 Failover Clusters update, especially the following hotfix.
    The network location profile changes from "Domain" to "Public" in Windows 7 or in Windows Server 2008 R2
    http://support.microsoft.com/kb/2524478/EN-US
    A hotfix is available that adds two new cluster control codes to help you determine which cluster node is blocking a GUM update in Windows Server 2008 R2 and Windows Server
    2012
    http://support.microsoft.com/kb/2779069/EN-US
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Cluster shuts down when invocation service fails to serialize message

    Hi,
    I have a slight problem with the invocation service. When calling InvocationService.execute()/query() with an Invocable that's not serializable the cluster shuts down. A stacktrace containing a NotSerializableException is dumped, followed by a:
    2005-12-16 10:42:45.623 Tangosol Coherence 3.1/321 <Error> (thread=main, member=2): PacketDispatcher: stopping cluster.
    I have tested with 3.01/317, 3.1/321 and 3.1/325, they all behave the same. I admit that it's a bug if the invocation service is used this way but we cannot guarantee the absence of such a bug and the consequences are little too harsh for us. Have I missed something here, is there way to avoid this behaviour?
    Thanks in advance,
    Chris

    Hi Chris,
    It is important to note that a fatal application error (like in your case, a non-serializable Invocable object) will affect the local member, at the most. The "cluster" being referred to is the local cluster object, which manages the membership of the local node in the actual cluster. After it is stopped like this, it will be automatically restarted during the next call to the Coherence API. We will improve the error message to be more clear.
    The fix for COH-370 will make sure that such an exception shows up only on the calling thread, and does not affect the membership of the local node within the cluster.
    Hopefully this fix will go into the next release after 3.1.
    Regards,
    Jason

  • XSERVE Cluster Server Keeps Shutting Down

    I have a G5 Xserve Cluster server. Been working like a charm the last couple of months, but now I have a problem. It just shuts down. Nothing dramatic. Will be running for a while and then click... it goes off.
    Any suggestions as to what could be causing this before I go to the apple store. PRAM Battery?
    It is completely random and can occur 10 seconds after starting up or 20 minutes in.

    I'd be checking the error logs for clues.
    Any chance it is overheating? Are the air vents clear of dust and debris?
    Are you using a properly rated UPS?

  • Save As and Print dialog boxes appear behind Firefox which locks everything. How do I move or shut down Firefox while its waiting on a hidden dialog?

    When this happens I can't access the dialog or move or close Firefox, including from the Task Manager (Task Manager says it's waiting for Firefox to complete the operation). I usually have to shut down the computer.

    cor-el,
    I kept forgetting and procrastinating about following your instructions, since I have internet access only for limited amounts of time and usually I am busy with important tasks when I am.
    Out of the blue, the problem corrected itself (the Save As box started to open full screen, then shrunk down to a normal size and the edges can now be dragged to a custom size).
    Even the copy and paste problem in the filenaming area seems to have been less troublesome lately even though there have been no updates to Firefox in a few weeks.
    Even though I marked the solution as not helpful, the problem has in fact been resolved. I will save the solution instructions in case the issue returns.

  • How to limit Write-Behind batch

    We have a scenario:
    we use read-write-backing-map-scheme having write-delay 60s.
    System insert a lot of data and then time comes to write data coherence find 40-50 k of unsaved record and pass them all to cachestore.
    Due to data volume or database busyness cashstore may work some time several seconds for instance.
    <read-write-backing-map-scheme>
    <scheme-name>TicketDatabaseScheme</scheme-name>
    <scheme-ref>DefaultDatabaseScheme</scheme-ref>
    <!--<write-delay>1m</write-delay>-->
    <cachestore-scheme>
    <class-scheme>
    <class-name>com.griddynamics.ticketon.app.dao.coherence.TicketCacheStore</class-name>
    </class-scheme>
    </cachestore-scheme>
    </read-write-backing-map-scheme>
    <read-write-backing-map-scheme>
    <scheme-name>DefaultDatabaseScheme</scheme-name>
    <internal-cache-scheme>
    <local-scheme>
    <scheme-ref>LocalScheme</scheme-ref>
    </local-scheme>
    </internal-cache-scheme>
    <write-delay>60s</write-delay>
    </read-write-backing-map-scheme>
    In the case we experience "Terminating guarded execution" followed by service termination.
    2010-02-11 09:26:52.223/511.457 Oracle Coherence GE 3.5.2/463 <Error> (thread=DistributedCache:TicketonCache, member=2): Terminating guarded execution (due to hard timeout 1924ms ago) of Daemon{Thread="Thread[WriteBehindThread:CacheStoreWrapper(com.griddynamics.ticketon.app.dao.coherence.TicketCacheStore),5,WriteBehindThread:CacheStoreWrapper(com.griddynamics.ticketon.app.dao.coherence.TicketCacheStore)]", State=Running}
    2010-02-11 09:26:52.225/511.459 Oracle Coherence GE 3.5.2/463 <Error> (thread=Termination Thread, member=2): Write-behind thread timed out; stopping the cache service
    2010-02-11 09:26:52.226/511.460 Oracle Coherence GE 3.5.2/463 <D5> (thread=DistributedCache:TicketonCache, member=2): Service TicketonCache left the cluster
    INFO 09:26:52,227 [http--80-22$27432016 DaoCoherenceImpl] - PROFILE_doCreatetickets putAll 200 tickets time 3444 time per 10 objects 172
    INFO 09:26:52,227 [http--80-22$27432016 DaoCoherenceImpl] - PROFILE event and 1000 tickets ctreated time 9668
    Broadcast Message from root (msglog) on ip-10-226-137-172 Thu Feb 11 09:57:18...ets putAll 200 tickets time 3365 time per 10 objects 168
    2010-02-11 09:26:52.228/511.462 Oracle Coherence GE 3.5.2/463 <Info> (thread=httTHE SYSTEM ip-10-226-137-172 IS BEING SHUT DOWN NOW ! ! !et
    Log off now or risk your files being damagedence GE 3.5.2/463 <Info> (thread=http--80-27$25787595, member=2): Restarting Service: TicketonCache
    INFO 09:26:52,229 [http--80-20$15974570 DaoCoherenceImpl] - PROFILE_doCreatetickets putAll 200 tickets time 3447 time per 10 objects 172
    INFO 09:26:52,289 [http--80-22$26935588 BackingBeanSuper] - request HttpRequest[22]
    [09:26:53.446] {http--80-35$24027494} java.lang.RuntimeException: Failed to start Service "TicketonCache" (ServiceState=SERVICE_STOPPED)
    [09:26:53.446] {http--80-35$24027494} at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
    Resume: coherence crashes in case far from fatal.
    Questions
    1. May i limit the size of a batch passed to cachestore?
    2. Is it possible to configure the timeout "(due to hard timeout 1924ms ago)"
    3. Is it possible to handle like this some way to prevent self killing of coherence cluster.

    Thank you Mark you are vary helpfull
    Did you mean that (lower) by "bundle strategy"?
    <cachestore-scheme>
    <class-scheme>
    <class-name>com.griddynamics.ticketon.app.dao.coherence.TicketCacheStore</class-name>
    </class-scheme>
    <operation-bundling>
    <bundle-config>
    <operation-name>store</operation-name>
    <preferred-size>5000</preferred-size>
    <auto-adjust>true</auto-adjust>
    </bundle-config>
    </operation-bundling>
    </cachestore-scheme>
    And if yes is it looks sense?
    I mean by this, "send records to TicketCacheStore by 5000 per call " am i right?
    I dropped delay to 10s and set factor to 0.5
    Not coherece send me 5-20k records and cachestore handle whis successfuly.
    But! By diferent means it may work longer sometimes, some lock in database for instance.
    I want to find durable solution for the case, not only lower a chance i meet one.
    Issuing heartbeat from cachestore looks best for me now.
    I find that default guardian timeout is 65s and it is not looks as good idea to make it higher.

  • When i open programs as NetBeans my mac shuts down, and then i can't boot it

    Okay so to be more precise, about 1-2 months ago my mac started to do weird things. Whenever i opened webcam or some other programs my mac shuts down, and then i would not be able to boot it up again, so i had to try to boot it in safe mode, resest NVRAM and all of that.
    If i try to boot it up normally it starts fine with the apple logo, then its changing into a clean white/grey screen, and if i try to boot it up in safe mode it becomes blue.
    The funny thing is if i keep to try to boot it, then it will eventually boot up, but still i can't use my programs for school (For an example NetBeans for my programming)
    At first i thought it was my harddrive, so i bought a 120GB SSD Samsung EVO and installed Snow Leopard. But it still ****** up (Tried to update it to Maverick, still didn't do anything)
    So i'm out of ideas of what to do.. Please help
    (I have a MacBook Pro Mid 2010)
    Sincerely,
    Frederik Bang

    This is from step 1
    8/19/14 12:06:04.000 bootlog[0]: BOOT_TIME 1408442764 0
    8/16/14 22:44:57.293 WindowServer[105]: CGXDisplayDidWakeNotification [31138563430987]: posting kCGSDisplayDidWake
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/16/14 22:44:57.294 WindowServer[105]: handle_will_sleep_auth_and_shield_windows: NULL shield_window (lock state: 1)
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    8/16/14 22:44:58.059 AirPlayUIAgent[201]: 2014-08-16 10:44:58.059243 PM [AirPlayUIAgent] Changed PIN pairing: no
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/16/14 22:44:58.082 AirPlayUIAgent[201]: 2014-08-16 10:44:58.081511 PM [AirPlayUIAgent] Changed PIN pairing: no
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    8/19/14 12:06:05.000 kernel[0]: Longterm timer threshold: 1000 ms
    8/19/14 12:06:05.000 kernel[0]: PMAP: PCID enabled
    8/19/14 12:06:05.000 kernel[0]: Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    8/19/14 12:06:05.000 kernel[0]: vm_page_bootstrap: 924365 free pages and 116019 wired pages
    8/19/14 12:06:05.000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    8/19/14 12:06:05.000 kernel[0]: zone leak detection enabled
    8/19/14 12:06:05.000 kernel[0]: "vm_compressor_mode" is 4
    8/19/14 12:06:05.000 kernel[0]: standard timeslicing quantum is 10000 us
    8/19/14 12:06:05.000 kernel[0]: standard background quantum is 2500 us
    8/19/14 12:06:05.000 kernel[0]: mig_table_max_displ = 74
    8/19/14 12:06:05.000 kernel[0]: TSC Deadline Timer supported and enabled
    8/19/14 12:06:05.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    8/19/14 12:06:05.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    8/19/14 12:06:05.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    8/19/14 12:06:05.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    8/19/14 12:06:05.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    8/19/14 12:06:05.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    8/19/14 12:06:05.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    8/19/14 12:06:05.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    8/19/14 12:06:05.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    8/19/14 12:06:05.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    8/19/14 12:06:05.000 kernel[0]: calling mpo_policy_init for Sandbox
    8/19/14 12:06:05.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    8/19/14 12:06:05.000 kernel[0]: calling mpo_policy_init for Quarantine
    8/19/14 12:06:05.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    8/19/14 12:06:05.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    8/19/14 12:06:05.000 kernel[0]: The Regents of the University of California. All rights reserved.
    8/19/14 12:06:05.000 kernel[0]: MAC Framework successfully initialized
    8/19/14 12:06:05.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    8/19/14 12:06:05.000 kernel[0]: AppleKeyStore starting (BUILT: Jun  3 2014 21:40:51)
    8/19/14 12:06:05.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    8/19/14 12:06:05.000 kernel[0]: ACPI: sleep states S3 S4 S5
    8/19/14 12:06:05.000 kernel[0]: pci (build 21:30:51 Jun  3 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    8/19/14 12:06:05.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 88AB
    8/19/14 12:06:05.000 kernel[0]: AppleIntelCPUPowerManagement: (built 21:36:10 Jun  3 2014) initialization complete
    8/19/14 12:06:05.000 kernel[0]: [ PCI configuration begin ]
    8/19/14 12:06:05.000 kernel[0]: console relocated to 0xf90010000
    8/19/14 12:06:05.000 kernel[0]: [ PCI configuration end, bridges 12, devices 18 ]
    8/19/14 12:06:05.000 kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    8/19/14 12:06:05.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    8/19/14 12:06:05.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    8/19/14 12:06:05.000 kernel[0]: rooting via boot-uuid from /chosen: 954CD513-4F88-37E4-AAC0-40A2EB5EF706
    8/19/14 12:06:05.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    8/19/14 12:06:05.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    8/19/14 12:06:05.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    8/19/14 12:06:05.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    8/19/14 12:06:05.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    8/19/14 12:06:05.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    8/19/14 12:06:05.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    8/19/14 12:06:05.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    8/19/14 12:06:05.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/Samsung SSD 840 EVO 120GB Media/IOGUIDPartitionScheme/MacBook Pro SSD@2
    8/19/14 12:06:05.000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    8/19/14 12:06:05.000 kernel[0]: jnl: b(1, 2): replay_journal: from: 4111872 to: 8367104 (joffset 0x37e000)
    8/19/14 12:06:05.000 kernel[0]: BTCOEXIST off
    8/19/14 12:06:05.000 kernel[0]: BRCM tunables:
    8/19/14 12:06:05.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    8/19/14 12:06:05.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 70cd60fffedafe78; max speed s800.
    8/19/14 12:06:05.000 kernel[0]: FWOHCI : enableCycleSync - enabled count going negative?!?
    8/19/14 12:06:05.000 kernel[0]: jnl: b(1, 2): journal replay done.
    8/19/14 12:06:05.000 kernel[0]: hfs: mounted MacBook Pro SSD on device root_device
    8/19/14 12:06:05.000 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/19/14 12:06:05.000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    8/19/14 12:06:04.554 com.apple.launchd[1]: *** launchd[1] has started up. ***
    8/19/14 12:06:04.554 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    8/19/14 12:06:05.428 com.apple.SecurityServer[14]: Session 100000 created
    8/19/14 12:06:05.509 opendirectoryd[21]: sandbox cache error 11: database disk image is malformed
    8/19/14 12:06:05.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    8/19/14 12:06:05.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    8/19/14 12:06:05.674 com.apple.SecurityServer[14]: Entering service
    8/19/14 12:06:05.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    8/19/14 12:06:05.753 configd[18]: network changed.
    8/19/14 12:06:05.755 configd[18]: setting hostname to "Frederik-Bangs-MacBook-Pro.local"
    8/19/14 12:06:05.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    8/19/14 12:06:05.809 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    8/19/14 12:06:05.000 kernel[0]: AGC: 3.6.22, HW version=1.9.23, flags:0, features:20600
    8/19/14 12:06:05.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    8/19/14 12:06:05.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    8/19/14 12:06:05.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    8/19/14 12:06:05.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    8/19/14 12:06:05.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    8/19/14 12:06:05.000 kernel[0]: Previous Shutdown Cause: 3
    8/19/14 12:06:05.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    8/19/14 12:06:05.000 kernel[0]: IOBluetoothUSBDFU::probe
    8/19/14 12:06:05.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    8/19/14 12:06:05.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xf800 ****
    8/19/14 12:06:05.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xf800 ****
    8/19/14 12:06:05.930 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    8/19/14 12:06:05.000 kernel[0]: init
    8/19/14 12:06:05.000 kernel[0]: probe
    8/19/14 12:06:05.000 kernel[0]: start
    8/19/14 12:06:05.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xf800
    8/19/14 12:06:05.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    8/19/14 12:06:05.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    8/19/14 12:06:05.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xa6c0 -- 0xa800 -- 0xf800 ****
    8/19/14 12:06:06.000 kernel[0]: DSMOS has arrived
    8/19/14 12:06:06.000 kernel[0]: [AGPM Controller] build GPUDict by Vendor1002Device6741
    8/19/14 12:06:06.000 kernel[0]: fGPUIdleIntervalMS = 0
    8/19/14 12:06:07.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xf800 ****
    8/19/14 12:06:08.000 kernel[0]: VM Swap Subsystem is ON
    8/19/14 12:06:08.613 hidd[70]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    8/19/14 12:06:08.615 hidd[70]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    8/19/14 12:06:08.696 com.apple.usbmuxd[47]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    8/19/14 12:06:08.723 mDNSResponder[62]: mDNSResponder mDNSResponder-522.92.1 (Jun  3 2014 12:57:56) starting OSXVers 13
    8/19/14 12:06:08.783 revisiond[55]: "/.vol/16777218/2/.DocumentRevisions-V100/.cs/ChunkStorage/0/0/0/1" does not exist, rowID:1
    8/19/14 12:06:08.784 revisiond[55]: There was a problem compacting SF ftRowId:1, rc:-1
    8/19/14 12:06:08.797 mds[61]: (Normal) FMW: FMW 0 0
    8/19/14 12:06:08.799 loginwindow[65]: Login Window Application Started
    8/19/14 12:06:08.888 systemkeychain[88]: done file: /var/run/systemkeychaincheck.done
    8/19/14 12:06:08.890 apsd[82]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    8/19/14 12:06:08.899 configd[18]: network changed.
    8/19/14 12:06:08.900 configd[18]: network changed: DNS*
    8/19/14 12:06:08.904 mDNSResponder[62]: D2D_IPC: Loaded
    8/19/14 12:06:08.904 mDNSResponder[62]: D2DInitialize succeeded
    8/19/14 12:06:08.908 mDNSResponder[62]:   4: Listening for incoming Unix Domain Socket client requests
    8/19/14 12:06:08.955 WindowServer[90]: Server is starting up
    8/19/14 12:06:08.957 networkd[106]: networkd.106 built Aug 24 2013 22:08:46
    8/19/14 12:06:08.971 WindowServer[90]: Session 256 retained (2 references)
    8/19/14 12:06:08.971 WindowServer[90]: Session 256 released (1 references)
    8/19/14 12:06:09.017 WindowServer[90]: Session 256 retained (2 references)
    8/19/14 12:06:09.020 WindowServer[90]: init_page_flip: page flip mode is on
    8/19/14 12:06:09.060 digest-service[92]: label: default
    8/19/14 12:06:09.061 digest-service[92]: dbname: od:/Local/Default
    8/19/14 12:06:09.061 digest-service[92]: mkey_file: /var/db/krb5kdc/m-key
    8/19/14 12:06:09.061 digest-service[92]: acl_file: /var/db/krb5kdc/kadmind.acl
    8/19/14 12:06:09.242 digest-service[92]: digest-request: uid=0
    8/19/14 12:06:09.290 awacsd[80]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    8/19/14 12:06:09.393 awacsd[80]: InnerStore CopyAllZones: no info in Dynamic Store
    8/19/14 12:06:09.454 digest-service[92]: digest-request: netr probe 0
    8/19/14 12:06:09.455 digest-service[92]: digest-request: init request
    8/19/14 12:06:09.465 digest-service[92]: digest-request: init return domain: BUILTIN server: FREDERIK-BANGS-MACBOOK-PRO indomain was: <NULL>
    8/19/14 12:06:09.620 airportd[84]: airportdProcessDLILEvent: en1 attached (up)
    8/19/14 12:06:09.000 kernel[0]: createVirtIf(): ifRole = 1
    8/19/14 12:06:09.000 kernel[0]: in func createVirtualInterface ifRole = 1
    8/19/14 12:06:09.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    8/19/14 12:06:09.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    8/19/14 12:06:09.000 kernel[0]: Created virtif 0xffffff801c450400 p2p0
    8/19/14 12:06:09.642 aosnotifyd[83]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    8/19/14 12:06:09.670 locationd[67]: NBB-Could not get UDID for stable refill timing, falling back on random
    8/19/14 12:06:09.726 locationd[67]: Location icon should now be in state 'Inactive'
    8/19/14 12:06:09.728 locationd[67]: locationd was started after an unclean shutdown
    8/19/14 12:06:10.294 WindowServer[90]: Found 39 modes for display 0x00000000 [39, 0]
    8/19/14 12:06:10.309 WindowServer[90]: Found 1 modes for display 0x00000000 [1, 0]
    8/19/14 12:06:10.326 WindowServer[90]: Found 1 modes for display 0x00000000 [1, 0]
    8/19/14 12:06:10.327 WindowServer[90]: Found 1 modes for display 0x00000000 [1, 0]
    8/19/14 12:06:10.343 WindowServer[90]: mux_initialize: Mode is dynamic
    8/19/14 12:06:10.349 WindowServer[90]: Found 39 modes for display 0x00000000 [39, 0]
    8/19/14 12:06:10.354 WindowServer[90]: Found 1 modes for display 0x00000000 [1, 0]
    8/19/14 12:06:10.355 WindowServer[90]: Found 1 modes for display 0x00000000 [1, 0]
    8/19/14 12:06:10.390 WindowServer[90]: WSMachineUsesNewStyleMirroring: false
    8/19/14 12:06:10.391 WindowServer[90]: Display 0x04272902: GL mask 0x5; bounds (0, 0)[1440 x 900], 39 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 2, Rotation 0
    UUID 0x8a96a568c33550779a382c64e81094d2
    8/19/14 12:06:10.392 WindowServer[90]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    8/19/14 12:06:10.392 WindowServer[90]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    8/19/14 12:06:10.392 WindowServer[90]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    8/19/14 12:06:10.396 WindowServer[90]: WSSetWindowTransform: Singular matrix
    8/19/14 12:06:10.396 WindowServer[90]: WSSetWindowTransform: Singular matrix
    8/19/14 12:06:10.403 WindowServer[90]: Display 0x04272902: GL mask 0x5; bounds (0, 0)[1440 x 900], 39 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 2, Rotation 0
    UUID 0x8a96a568c33550779a382c64e81094d2
    8/19/14 12:06:10.403 WindowServer[90]: Display 0x003f003d: GL mask 0x2; bounds (2464, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    8/19/14 12:06:10.404 WindowServer[90]: Display 0x003f0040: GL mask 0x10; bounds (2465, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    8/19/14 12:06:10.404 WindowServer[90]: Display 0x003f003f: GL mask 0x8; bounds (2466, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    8/19/14 12:06:10.404 WindowServer[90]: CGXPerformInitialDisplayConfiguration
    8/19/14 12:06:10.404 WindowServer[90]:   Display 0x04272902: Unit 2; Alias(2, 0x5); Vendor 0x610 Model 0x9ca4 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    8/19/14 12:06:10.404 WindowServer[90]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    8/19/14 12:06:10.404 WindowServer[90]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    8/19/14 12:06:10.404 WindowServer[90]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    8/19/14 12:06:10.404 WindowServer[90]: CGXMuxBoot: Boot normal
    8/19/14 12:06:10.000 kernel[0]: en1: 802.11d country code set to 'DK'.
    8/19/14 12:06:10.000 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    8/19/14 12:06:10.518 WindowServer[90]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000003, accelerator 0x00004d2f, unit 0, caps QEX|MIPMAP, vram 451 MB
    8/19/14 12:06:10.520 WindowServer[90]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    8/19/14 12:06:10.520 WindowServer[90]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001c, accelerator 0x000036b3, unit 2, caps QEX|MIPMAP, vram 1024 MB
    8/19/14 12:06:10.522 WindowServer[90]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001c, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    8/19/14 12:06:10.523 WindowServer[90]: GLCompositor enabled for tile size [256 x 256]
    8/19/14 12:06:10.523 WindowServer[90]: CGXGLInitMipMap: mip map mode is on
    8/19/14 12:06:10.536 loginwindow[65]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    8/19/14 12:06:11.103 WindowServer[90]: Display 0x04272902: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    8/19/14 12:06:11.129 launchctl[123]: com.apple.findmymacmessenger: Already loaded
    8/19/14 12:06:11.210 com.apple.SecurityServer[14]: Session 100005 created
    8/19/14 12:06:11.335 loginwindow[65]: Setting the initial value of the magsave brightness level 1
    8/19/14 12:06:11.374 loginwindow[65]: Login Window Started Security Agent
    8/19/14 12:06:11.499 UserEventAgent[125]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    8/19/14 12:06:11.506 SecurityAgent[132]: This is the first run
    8/19/14 12:06:11.506 SecurityAgent[132]: MacBuddy was run = 0
    8/19/14 12:06:11.522 SecurityAgent[132]: User info context values set for frederikbang
    8/19/14 12:06:11.527 WindowServer[90]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04272902 device: 0x7fdd1400e310  isBackBuffered: 1 numComp: 3 numDisp: 3
    8/19/14 12:06:11.528 WindowServer[90]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fdd1400e310) - enabling OpenGL
    8/19/14 12:06:11.891 loginwindow[65]: Login Window - Returned from Security Agent
    8/19/14 12:06:11.936 loginwindow[65]: USER_PROCESS: 65 console
    8/19/14 12:06:11.000 kernel[0]: MacAuthEvent en1   Auth result for: 00:1f:ca:2e:0d:5e  MAC AUTH succeeded
    8/19/14 12:06:11.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    8/19/14 12:06:11.000 kernel[0]: AirPort: Link Up on en1
    8/19/14 12:06:11.000 kernel[0]: en1: BSSID changed to 00:1f:ca:2e:0d:5e
    8/19/14 12:06:12.000 kernel[0]: AppleKeyStore:Sending lock change 0
    8/19/14 12:06:12.147 com.apple.launchd.peruser.501[136]: Background: Aqua: Registering new GUI session.
    8/19/14 12:06:12.173 com.apple.launchd.peruser.501[136]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    8/19/14 12:06:12.175 com.apple.launchd.peruser.501[136]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    8/19/14 12:06:12.180 launchctl[138]: com.apple.pluginkit.pkd: Already loaded
    8/19/14 12:06:12.180 launchctl[138]: com.apple.sbd: Already loaded
    8/19/14 12:06:12.194 distnoted[140]: # distnote server agent  absolute time: 8.479032290   civil time: Tue Aug 19 12:06:12 2014   pid: 140 uid: 501  root: no
    8/19/14 12:06:12.195 distnoted[140]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    8/19/14 12:06:12.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    8/19/14 12:06:12.361 WindowServer[90]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    8/19/14 12:06:12.397 WindowServer[90]: Received display connect changed for display 0x4272902
    8/19/14 12:06:12.407 WindowServer[90]: Found 15 modes for display 0x04272902 [15, 0]
    8/19/14 12:06:12.418 WindowServer[90]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    8/19/14 12:06:12.423 WindowServer[90]: CGXMuxAcknowledge: Posting glitchless acknowledge
    8/19/14 12:06:12.437 WindowServer[90]: Received display connect changed for display 0x4272902
    8/19/14 12:06:12.438 WindowServer[90]: Found 1 modes for display 0x04272902 [1, 0]
    8/19/14 12:06:12.439 WindowServer[90]: Received display connect changed for display 0x3f003f
    8/19/14 12:06:12.439 WindowServer[90]: Found 1 modes for display 0x003f003f [1, 0]
    8/19/14 12:06:12.439 WindowServer[90]: Received display connect changed for display 0x3f0040
    8/19/14 12:06:12.440 WindowServer[90]: Found 1 modes for display 0x003f0040 [1, 0]
    8/19/14 12:06:12.578 launchproxyls[143]: Waiting for Launch Services seeding, UID 501
    8/19/14 12:06:12.627 airportd[84]: _doAutoJoin: Already associated to “HBWIFI”. Bailing on auto-join.
    8/19/14 12:06:12.000 kernel[0]: Sandbox: fontworker(146) deny file-read-data /Applications/Automator.app/Contents
    8/19/14 12:06:12.713 coresymbolicationd[150]: /System/Library/Caches/com.apple.coresymbolicationd/data did not validate, resetting cache
    8/19/14 12:06:12.755 WindowServer[90]: Display 0x04272902: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    8/19/14 12:06:12.773 mds[61]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    8/19/14 12:06:12.783 WindowServer[90]: Display 0x04272902: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    8/19/14 12:06:12.815 WindowServer[90]: Display 0x04272902: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    8/19/14 12:06:13.303 sandboxd[149]: ([146]) fontworker(146) deny file-read-data /Applications/App Store.app
    8/19/14 12:06:13.379 sandboxd[149]: ([146]) fontworker(146) deny file-read-data /Applications/App Store.app/Contents
    8/19/14 12:06:13.435 UserEventAgent[139]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    8/19/14 12:06:13.456 sandboxd[149]: ([146]) fontworker(146) deny file-read-data /Applications/App Store.app/Contents/PkgInfo
    8/19/14 12:06:13.507 sandboxd[149]: ([146]) fontworker(146) deny file-read-data /Applications/App Store.app/Contents/MacOS/App Store
    8/19/14 12:06:13.687 sandboxd[149]: ([146]) fontworker(146) deny file-read-data /Applications/App Store.app/Contents/MacOS/App Store/..namedfork/rsrc
    8/19/14 12:06:13.738 sandboxd[149]: ([146]) fontworker(146) deny file-read-data /Applications/App Store.app/Contents/PlugIns
    8/19/14 12:06:13.790 sandboxd[149]: ([146]) fontworker(146) deny file-read-data /Applications/App Store.app/Contents/PlugIns
    8/19/14 12:06:13.850 sandboxd[149]: ([146]) fontworker(146) deny file-read-data /Applications/Automator.app
    8/19/14 12:06:15.418 com.apple.launchd.peruser.501[136]: ([email protected][175]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    8/19/14 12:06:15.418 com.apple.launchd.peruser.501[136]: ([email protected][175]) Job failed to exec(3) for weird reason: 2
    8/19/14 12:06:15.676 com.apple.SecurityServer[14]: Session 100008 created
    8/19/14 12:06:15.000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=174[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    8/19/14 12:06:15.800 accountsd[187]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    8/19/14 12:06:16.076 sharingd[189]: Starting Up...
    8/19/14 12:06:16.119 mds[61]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    8/19/14 12:06:16.152 revisiond[55]: objc[55]: Class GSLockToken is implemented in both /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Supp ort/revisiond and /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage. One of the two will be used. Which one is undefined.
    8/19/14 12:06:16.458 com.apple.SecurityServer[14]: Session 100007 created
    8/19/14 12:06:16.602 apsd[82]: Unexpected connection from logged out uid 501
    8/19/14 12:06:16.630 imagent[165]: [Warning] Services all disappeared, removing all dependent devices
    8/19/14 12:06:16.654 WiFiKeychainProxy[156]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    8/19/14 12:06:16.655 WiFiKeychainProxy[156]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    8/19/14 12:06:16.681 imagent[165]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    8/19/14 12:06:16.682 imagent[165]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    8/19/14 12:06:17.127 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    8/19/14 12:06:17.128 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    8/19/14 12:06:17.128 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    8/19/14 12:06:17.128 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    8/19/14 12:06:17.128 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    8/19/14 12:06:17.128 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    8/19/14 12:06:17.128 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    8/19/14 12:06:17.128 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    8/19/14 12:06:17.128 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    8/19/14 12:06:17.129 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    8/19/14 12:06:17.129 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    8/19/14 12:06:17.129 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    8/19/14 12:06:17.129 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    8/19/14 12:06:17.129 com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    8/19/14 12:06:17.215 com.apple.audio.DriverHelper[201]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    8/19/14 12:06:17.215 com.apple.audio.DriverHelper[201]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    8/19/14 12:06:17.215 com.apple.audio.DriverHelper[201]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    8/19/14 12:06:17.360 SystemUIServer[178]: Cannot find executable for CFBundle 0x7f92f3e180f0 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    8/19/14 12:06:17.361 com.apple.IconServicesAgent[205]: IconServicesAgent launched.
    8/19/14 12:06:17.385 SystemUIServer[178]: Cannot find executable for CFBundle 0x7f92f3c16c40 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    8/19/14 12:06:17.386 SystemUIServer[178]: Cannot find executable for CFBundle 0x7f92f3d546c0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    8/19/14 12:06:17.813 secd[194]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    8/19/14 12:06:17.814 secd[194]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    8/19/14 12:06:17.820 secd[194]:  CFPropertyListReadFromFile file file:///Users/frederikbang/Library/Keychains/087BC3B2-426E-5653-8D2E-D6A8AA2B3D B2/accountStatus.plist: The file “accountStatus.plist” couldn’t be opened because there is no such file.
    8/19/14 12:06:17.834 secd[194]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    8/19/14 12:06:17.834 secd[194]:  securityd_xpc_dictionary_handler WiFiKeychainProx[156] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    8/19/14 12:06:17.847 soagent[159]: [Warning] Services all disappeared, removing all dependent devices
    8/19/14 12:06:17.896 SystemUIServer[178]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    8/19/14 12:06:17.897 SystemUIServer[178]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    8/19/14 12:06:17.948 soagent[159]: No active accounts, killing soagent in 10 seconds
    8/19/14 12:06:17.951 soagent[159]: No active accounts, killing soagent in 10 seconds
    8/19/14 12:06:18.362 com.apple.time[139]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/19/14 12:06:18.375 com.apple.dock.extra[207]: No endpoint returned trying to load UnreadCountController.bundle, suspending
    8/19/14 12:06:18.381 com.apple.time[139]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/19/14 12:06:19.092 Dropbox[180]: PyObjCPointer created: at 0xcc9fc88 of type {OpaqueJSContext=}
    8/19/14 12:06:19.441 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'HBWIFI' not making interface primary (no cache entry)
    8/19/14 12:06:19.441 configd[18]: network changed: DNS* Proxy
    8/19/14 12:06:19.442 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    8/19/14 12:06:19.442 UserEventAgent[11]: Captive: en1: Probing 'HBWIFI'
    8/19/14 12:06:19.477 UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    8/19/14 12:06:19.481 configd[18]: network changed: v4(en1!:10.128.245.164) DNS+ Proxy+ SMB+
    8/19/14 12:06:19.834 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x2ef] flags: 0x8 binding: FileInfoBinding [0x10f] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: ????.
    8/19/14 12:06:19.835 quicklookd[208]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: ???? request size:128 scale: 1
    8/19/14 12:06:20.075 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x111] flags: 0x8 binding: FileInfoBinding [0x2f1] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN.
    8/19/14 12:06:20.076 quicklookd[208]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN request size:128 scale: 1
    8/19/14 12:06:21.000 kernel[0]: fsevents: watcher dbfseventsd (pid: 232) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    8/19/14 12:06:22.019 Dropbox[180]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    8/19/14 12:06:22.719 AirPlayUIAgent[204]: 2014-08-19 12:06:22.717865 PM [AirPlayUIAgent] Changed PIN pairing: no
    8/19/14 12:06:22.728 AirPlayUIAgent[204]: 2014-08-19 12:06:22.728281 PM [AirPlayUIAgent] Changed PIN pairing: no
    8/19/14 12:06:24.394 awacsd[80]: Exiting
    8/19/14 12:06:26.000 kernel[0]: Sandbox: storeagent(247) deny file-write-unlink /Users/frederikbang/Library/Application Support/AppStore/manifest.plist
    8/19/14 12:06:26.000 kernel[0]: Sandbox: storeagent(247) deny file-write-unlink /Users/frederikbang/Library/Application Support/AppStore/manifest.plist
    8/19/14 12:06:26.200 storeagent[247]: DownloadManifest: Error moving legacy manifest - Error Domain=NSCocoaErrorDomain Code=513 "“manifest.plist” kunne ikke flyttes, fordi du ikke har adgangstilladelser til “com.apple.appstore”." UserInfo=0x7ff57bd2af60 {NSSourceFilePathErrorKey=/Users/frederikbang/Library/Application Support/AppStore/manifest.plist, NSUserStringVariant=(
        Move
    ), NSDestinationFilePath=/var/folders/70/w5pc4f891jv0k41f86bd44380000gn/C/com.appl e.appstore/manifest.plist, NSFilePath=/Users/frederikbang/Library/Application Support/AppStore/manifest.plist, NSUnderlyingError=0x7ff57bd2adf0 "Handlingen kunne ikke udføres. Handling tillades ikke"}
    8/19/14 12:06:26.000 kernel[0]: Sandbox: storeagent(247) deny file-write-unlink /Users/frederikbang/Library/Application Support/AppStore
    8/19/14 12:06:26.000 kernel[0]: Sandbox: storeagent(247) deny file-read-data /Users/frederikbang/Library/Application Support/AppStore
    8/19/14 12:06:26.218 storeagent[247]: DownloadManifest: Error removing legacy download location - Error Domain=NSCocoaErrorDomain Code=513 "“AppStore” kunne ikke fjernes, fordi du ikke har adgangstilladelser til det." UserInfo=0x7ff57bf2a4a0 {NSFilePath=/Users/frederikbang/Library/Application Support/AppStore, NSUserStringVariant=(
        Remove
    ), NSUnderlyingError=0x7ff57bf2cc90 "Handlingen kunne ikke udføres. Handling tillades ikke"}
    8/19/14 12:06:26.348 parentalcontrolsd[248]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    8/19/14 12:06:28.179 soagent[159]: Killing soagent.
    8/19/14 12:06:28.180 com.apple.dock.extra[207]: SOHelperCenter main connection interrupted
    8/19/14 12:06:28.180 NotificationCenter[162]: SOHelperCenter main connection interrupted
    8/19/14 12:06:28.181 imagent[165]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:159)
    8/19/14 12:06:28.181 imagent[165]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:159)
    8/19/14 12:06:38.159 launchproxyls[143]: Launch Services seeding complete
    8/19/14 12:06:43.523 mds_stores[105]: (Error) SecureStore: Access token 3 changed uid from -1 to 501
    8/19/14 12:06:44.242 distnoted[266]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    8/19/14 12:06:44.338 mdworker[264]: sandbox cache error 3850
    8/19/14 12:06:44.414 mdworker[263]: sandbox cache error 3850
    8/19/14 12:06:44.541 mdworker[265]: sandbox cache error 3850
    8/19/14 12:06:44.927 mdworker[256]: sandbox cache error 3850
    8/19/14 12:06:49.637 root[273]: on_wire failed for server 17.72.148.52!
    8/19/14 12:06:49.638 root[273]: on_wire failed for server 17.72.148.53!
    8/19/14 12:06:49.734 ntpd[44]: proto: precision = 1.000 usec
    8/19/14 12:06:54.173 com.apple.SecurityServer[14]: Session 100012 created
    8/19/14 12:07:04.051 digest-service[92]: digest-request: uid=0
    8/19/14 12:07:04.052 digest-service[92]: digest-request: init request
    8/19/14 12:07:04.055 digest-service[92]: digest-request: init return domain: MACBOOKPRO-C0FE server: FREDERIK-BANGS-MACBOOK-PRO indomain was: <NULL>
    8/19/14 12:07:04.000 kernel[0]: Sandbox: netbiosd(223) deny mach-lookup com.apple.networkd
    8/19/14 12:07:04.081 digest-service[92]: digest-request: uid=0
    8/19/14 12:07:04.082 digest-service[92]: digest-request: init request
    8/19/14 12:07:04.085 digest-service[92]: digest-request: init return domain: MACBOOKPRO-C0FE server: FREDERIK-BANGS-MACBOOK-PRO indomain was: <NULL>
    8/19/14 12:07:05.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0PS (kSMCKeyNotFound)
    8/19/14 12:07:05.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    8/19/14 12:07:30.113 netbiosd[223]: name servers down?
    8/19/14 12:09:25.522 SystemUIServer[178]: It does not make sense to draw an image when [NSGraphicsContext currentContext] is nil.  This is a programming error. Break on void _NSWarnForDrawingImageWithNoCurrentContext() to debug.  This will be logged only once.  This may break in the future.
    8/19/14 12:09:25.523 loginwindow[65]: magsafeStateChanged state changed old 1 new 2
    8/19/14 12:09:52.053 loginwindow[65]: magsafeStateChanged state changed old 2 new 1
    8/19/14 12:10:09.629 mds[61]: (Normal) Volume: volume:0x7fc02d818000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.gT5dd6
    8/19/14 12:10:34.256 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x175] flags: 0x8 binding: FileInfoBinding [0x27d] - extension: jpg, UTI: public.jpeg, fileType: ????.
    8/19/14 12:10:34.256 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: jpg, UTI: public.jpeg, fileType: ???? request size:16 scale: 1
    8/19/14 12:10:37.088 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x27f] flags: 0x8 binding: FileInfoBinding [0x177] - extension: pptx, UTI: org.openxmlformats.presentationml.presentation, fileType: ????.
    8/19/14 12:10:37.088 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: pptx, UTI: org.openxmlformats.presentationml.presentation, fileType: ???? request size:16 scale: 1
    8/19/14 12:10:37.122 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x281] flags: 0x8 binding: FileInfoBinding [0x3c3] - extension: pptm, UTI: org.openxmlformats.presentationml.presentation.macroenabled, fileType: ????.
    8/19/14 12:10:37.123 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: pptm, UTI: org.openxmlformats.presentationml.presentation.macroenabled, fileType: ???? request size:16 scale: 1
    8/19/14 12:10:37.195 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x283] flags: 0x8 binding: FileInfoBinding [0x179] - extension: potx, UTI: org.openxmlformats.presentationml.template, fileType: ????.
    8/19/14 12:10:37.195 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: potx, UTI: org.openxmlformats.presentationml.template, fileType: ???? request size:16 scale: 1
    8/19/14 12:10:37.202 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x285] flags: 0x8 binding: FileInfoBinding [0x3c5] - extension: png, UTI: public.png, fileType: PNGf.
    8/19/14 12:10:37.203 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xa03] flags: 0x8 binding: FileInfoBinding [0x903] - extension: png, UTI: public.png, fileType: PNGf request size:16 scale: 1
    8/19/14 12:10:37.326 com.apple.SecurityServer[14]: Session 100016 created
    8/19/14 12:10:37.380 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x287] flags: 0x8 binding: FileInfoBinding [0x17b] - extension: (NULL), UTI: com.microsoft.waveform-audio, fileType: WAVE.
    8/19/14 12:10:37.380 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xc03] flags: 0x8 binding: FileInfoBinding [0xb03] - extension: (NULL), UTI: com.microsoft.waveform-audio, fileType: WAVE request size:16 scale: 1
    8/19/14 12:10:38.590 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x1ad] flags: 0x8 binding: FileInfoBinding [0x2c1] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN.
    8/19/14 12:10:38.590 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xe03] flags: 0x8 binding: FileInfoBinding [0xd03] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN request size:128 scale: 1
    8/19/14 12:10:38.608 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x303] flags: 0x8 binding: BundleBinding [0x2c3] URL: file:///System/Library/PreferencePanes/Bluetooth.prefPane bundle identifier: (null).
    8/19/14 12:10:38.609 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1003] flags: 0x8 binding: BundleBinding [0xf03] URL: file:///System/Library/PreferencePanes/Bluetooth.prefPane bundle identifier: (null) request size:64 scale: 1
    8/19/14 12:10:38.613 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x307] flags: 0x8 binding: BundleBinding [0x1b3] URL: file:///System/Library/PreferencePanes/AppStore.prefPane bundle identifier: (null).
    8/19/14 12:10:38.614 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1203] flags: 0x8 binding: BundleBinding [0x1103] URL: file:///System/Library/PreferencePanes/AppStore.prefPane bundle identifier: (null) request size:64 scale: 1
    8/19/14 12:10:38.625 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x1b7] flags: 0x8 binding: BundleBinding [0x30b] URL: file:///System/Library/PreferencePanes/Speech.prefPane bundle identifier: (null).
    8/19/14 12:10:38.625 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1403] flags: 0x8 binding: BundleBinding [0x1303] URL: file:///System/Library/PreferencePanes/Speech.prefPane bundle identifier: (null) request size:64 scale: 1
    8/19/14 12:10:38.635 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x2c9] flags: 0x8 binding: BundleBinding [0x30d] URL: file:///System/Library/PreferencePanes/DigiHubDiscs.prefPane bundle identifier: (null).
    8/19/14 12:10:38.635 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1603] flags: 0x8 binding: BundleBinding [0x1503] URL: file:///System/Library/PreferencePanes/DigiHubDiscs.prefPane bundle identifier: (null) request size:64 scale: 1
    8/19/14 12:10:38.640 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x311] flags: 0x8 binding: BundleBinding [0x2cd] URL: file:///System/Library/PreferencePanes/DateAndTime.prefPane bundle identifier: (null).
    8/19/14 12:10:38.641 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1803] flags: 0x8 binding: BundleBinding [0x1703] URL: file:///System/Library/PreferencePanes/DateAndTime.prefPane bundle identifier: (null) request size:64 scale: 1
    8/19/14 12:10:38.647 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x1bd] flags: 0x8 binding: BundleBinding [0x2cf] URL: file:///System/Library/PreferencePanes/SharingPref.prefPane bundle identifier: (null).
    8/19/14 12:10:38.647 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1a03] flags: 0x8 binding: BundleBinding [0x1903] URL: file:///System/Library/PreferencePanes/SharingPref.prefPane bundle identifier: (null) request size:64 scale: 1
    8/19/14 12:10:38.653 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x317] flags: 0x8 binding: BundleBinding [0x2d1] URL: file:///System/Library/PreferencePanes/Dock.prefPane bundle identifier: (null).
    8/19/14 12:10:38.653 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1c03] flags: 0x8 binding: BundleBinding [0x1b03] URL: file:///System/Library/PreferencePanes/Dock.prefPane bundle identifier: (null) request size:64 scale: 1
    8/19/14 12:10:38.801 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x2e3] flags: 0x8 binding: FileInfoBinding [0x329] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN.
    8/19/14 12:10:38.801 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1e03] flags: 0x8 binding: FileInfoBinding [0x1d03] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN request size:64 scale: 1
    8/19/14 12:10:38.806 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x2e5] flags: 0x8 binding: BundleBinding [0x1d1] URL: file:///System/Library/PreferencePanes/EnergySaver.prefPane bundle identifier: (null).
    8/19/14 12:10:38.806 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x2003] flags: 0x8 binding: BundleBinding [0x1f03] URL: file:///System/Library/PreferencePanes/EnergySaver.prefPane bundle identifier: (null) request size:64 scale: 1
    8/19/14 12:10:39.147 com.apple.IconServicesAgent[205]: main Failed to composit image for binding VariantBinding [0x2e7] flags: 0x8 binding: FileInfoBinding [0x32b] - extension: odt, UTI: org.oasis-open.opendocument.text, fileType: ????.
    8/19/14 12:10:39.148 quicklookd[306]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x2203] flags: 0x8 binding: FileInfoBinding [0x2103] - extension: odt, UTI: org.oasis-open.opendocument.text, fileType: ???? request size:64 scale: 1
    8/19/14 12:10:55.052 com.apple.time[139]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/19/14 12:10:55.000 kernel[0]: Sandbox: xpcd(25) deny ipc-posix-shm-read-data /tmp/com.apple.csseed.34
    8/19/14 12:11:05.962 com.apple.time[139]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/19/14 12:11:18.022 com.apple.time[139]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/19/14 12:11:19.907 com.apple.time[139]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/19/14 12:12:08.987 Console[323]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    This is from step 2
    In step 2 i can't find anything like .crash
    I did it under Diagnostic and Usage Information --> System Diagnostic Reports.
    There's a lot of PluginProcess and powerstats.
    I even tried to filter with .crash and crash, but only 2 lines of something showed up when i tried "crash"

  • Can a db slowdown with write-behind cause a slowdown in cache operations?

    If we have a coherence cluster, and one cache configured with write-behind is having trouble writing to the db (ie, it's slow), and we keep adding objects to the cache that exceed the ability of the db to consume them; will flow-control kick in and cause the writes to the cache to block/slow-down? Ie, the classic producer-consumer problem, where we are adding objects to the cache, faster than the cachestore can consume them.
    What happens in this case? Will flow-control kick in and block writes to the cache? Will an internal buffer just keep growing? Are there any knobs to tweak this behavior (eg, in the case of spikes, where temporarily the producer is producing faster than the consumer can consume for a brief period of time, but then things go back to normal)?

    user9222505 wrote:
    I believe we discovered that the same thread pool is used for all requests to the cache, including gets, puts and calls into the cachestore. So if the writes are slow within the cachestore, then it uses up all of the threads and slows everything down.Hi,
    This is not really correct.
    If a cache in a service is configured to use write-behind then a separate thread for that service is started, which deals with write-behind store and storeAll operations.
    The remove operations need to be handled synchronously to avoid corruption of the data-set in the scenario of reading a entry from the cache immediately after removing it (if it were not synchronously deleted from the backing storage, then reading it back could give an incorrect non-null value). Therefore remove operations are handled synchronously on the service / worker thread, and not delayed on the write-behind thread.
    Gets are also synchronously handled, so they again are served on the service / worker thread.
    So if the puts are slow and wait too much, that may delay other puts but should not contend with other threads. If the puts are computation intensive, then obviously they hinder other threads because of consumption of the same CPU resource, and not simply because they execute.
    Best regards,
    Robert

  • Switching from write through to write behind automatically

    Hi,
    We are considering a Coherence solution to protect a customer facing application from outages due to database failures. This is for a financial company and the monetary value of each transaction is large and we want to provide 100% guarantee against data loss while not incurring any outages. We want to provide a write-through persistence to the database through Coherence which can switch to a write-behind automatically at runtime if the database persistence fails. Is this doable automatically and would it solve the problem I am trying to solve without losing any inflight transactions? Are there any real customer cases that were successful in achieving this using Coherence?
    Thanks
    Sairam
    Edited by: SKR on Feb 16, 2012 3:14 PM
    Edited by: SKR on Feb 16, 2012 3:15 PM

    SKR wrote:
    Jonathan.Knight wrote:
    Hi Sairam
    I know you can change the write-delay in JMX for a cache using write-behind but I pretty certauin you cannot make a write-through cache suddenly become a write-behind cache.
    I'm not sure why you think changing from write-through to write-behind will allow you to guarantee 100% no data loss - do you mean no loss of updates to the DB or no loss of data in the cache cluster? There are certainly scenarios that can occur where you can loose data from either the cluster or the DB that write-through or write-behind will not save you from. Presumably you want to use write-behind to allow for the DB to go down, although you will still need to configure Coherence to properly retry failed write-behind calls CacheStore behaviour on failure. What happens to your data if you are using write-behind and you loose a partition from you cluster (i.e. you loose a physical machine or two or more JVMs in a short space of time) - you have data loss - you cannot guarantee against this you can only mitigate it and have a recovery policy/procedure.
    JKJK,
    Thanks for your reply. I must have explained the scenario better. What we are trying to do is to have our transactions commit to the database synchronously using write-through, so that during normal operation, the data will be committed, persisted and durable in the database. But our RW database becomes a single point of failure and if some problem occurs to the database during the peak load time, we run the risk of an outage till we fix the database problem or failover to the standby (We don't have RAC architecture or automatic failover and the manual switchover takes about 10 - 15 mins minimum). We want to avoid this by providing a cache-only operation mode during such a failure, where the customers can continue to transact and the writes will get queued in the cache. I do understand that losing both the database and the cache or losing the primary and the backup in the cache would result in a data loss. But I am assuming such a dual failure is rare.
    We do not want to run write-behind all the time but only during the database failure window. From what you mentioned, it seems the runtime switching from write-through to write-behind is not available as an option.
    SairamHi Sairam,
    I would suggest that you configure write-behind to have a fairly short write-delay, and you only return a confirmation to the client
    - either after the write-behind succeeded (you can use a backing map listener to listen for the removal of the decoration which meant that the entry was dirty)
    - or if the database went down (noticeable from the failure), then it is up to you whether you send a confirmation which also mentions that it is not persisted to disk yet, or not at all
    Best regards,
    Robert

  • Shutting down a persistant ap

    My mother-in-law's computer wasn't originally wireless so when she got a wireless cable modem I got a USB wireless unit for her. It works fine; signs on at start-up. The problem is that most times it won't quit when I choose to shut down. The shut down usually times-out. After the time-out all I have to do is quit the program and then shut down. The thing is, my mother-in-law isn't very good at if-thens. I can't leave her any dialog boxes, decisions or extra clicks.
    My question is; is there anything I can do to force the program to comply and quit when she chooses "Shut Down?"
    TIA,
    Peter

    Hi Sairam,
    first you have to block producers.
    Afterwards you can ensure that the write-behind queue is written out on all nodes by (optionally calling the flush method on the read-write backing map on each node e.g. from an Invocation and then) waiting for JMX showing that the write-behind queue is empty on each node.
    Once there are no dirty entries in the wb queue, then you can just shut down consumers (anyone who reads from the cache).
    After ensuring that no one wants to read from the cache, there is no point in having the data in the cache, therefore you can clear the caches with NamedCache.clear().
    After this who cares that there is a redistribution of entry partitions.
    No need to destroy() the caches, clear()-ing them is enough, except if you have backing map listeners which would hold up the execution of the clear() method.
    Best regards,
    Robert

  • G5 Shuts down after I put it to Sleep

    Why is my G5 suddenly shutting down all the time when I put it to sleep .... I come back to use it and I have to power it up each time ?

    To log a sequence of events:
    Open the Console application, located in Applications/Utilities.
    Click Logs in the toolbar.
    Click the triangle next to a log to see more available logs.
    Select the appropriate log and click Clear.
    Perform the actions that produced the problem you are troubleshooting.
    Read the messages that appear in the Console window.
    Hello .... I can't seem to find where to " Search " and enter " Shut Down " .... I have opened Console and and able to open the triangles on many things ... This is one of them ... is this the correct one below ?
    ALSO - about 4 - 5 years approx. after the warranty expired I had a problem with the power supply and Apple Canada replaced it and the Mother Board free of charge $ 1300.00 would have been the cost there abouts ... Does this mean the same thing is happening again ??? I doubt if I have the info and the paperwork for that repair ( dumb me, I wish I did now ) .... Is there a way for me to find that info with my serial number ?
    If so - do you know why it would happen again and if so , is Apple still prepared to stand behind their product once again ?
    Thanks Much for you Help .... is the " below " does not show you what you asked me to find ... what are the steps I should do for you ... ?
    Eric
    Jun 28 19:35:50 Eric-Willies-Computer cp: error processing extended attributes: Operation not permitted
    Jun 28 19:35:50 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:41:40 Eric-Willies-Computer cp: error processing extended attributes: Operation not permitted
    Jun 28 19:47:34 Eric-Willies-Computer cp: error processing extended attributes: Operation not permitted
    Jun 28 19:47:34 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:34 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:35 Eric-Willies-Computer cp: error processing extended attributes: Operation not permitted
    Jun 28 19:47:35 Eric-Willies-Computer cp: error processing extended attributes: Operation not permitted
    Jun 28 19:47:35 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:44 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:45 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:46 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:47 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:47 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:47 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:47 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:48 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:48 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:50 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:50 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:47:50 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:48:51 Eric-Willies-Computer authexec: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jun 28 19:48:51 Eric-Willies-Computer shutdown: reboot by ericwillie:
    Jun 28 19:48:52 Eric-Willies-Computer SystemStarter[706]: authentication service (714) did not complete successfully
    Jun 28 19:49:57 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jun 28 19:49:56 localhost mDNSResponder-108.6 (Jul 19 2007 11: 33:32)[33]: starting
    Jun 28 19:49:58 localhost kernel[0]: vmpagebootstrap: 508164 free pages
    Jun 28 19:49:56 localhost memberd[43]: memberd starting up
    Jun 28 19:49:58 localhost kernel[0]: migtable_maxdispl = 70
    Jun 28 19:49:57 localhost lookupd[42]: lookupd (version 369.8) starting - Mon Jun 28 19:49:57 2010
    Jun 28 19:49:58 localhost kernel[0]: 96 prelinked modules
    Jun 28 19:49:58 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jun 28 19:49:58 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jun 28 19:49:58 localhost kernel[0]: using 5242 buffer headers and 4096 cluster IO buffer headers
    Jun 28 19:49:58 localhost kernel[0]: AppleKauaiATA shasta-ata features enabled
    Jun 28 19:49:58 localhost kernel[0]: DART enabled
    Jun 28 19:49:58 localhost kernel[0]: USB caused wake event (EHCI)
    Jun 28 19:49:58 localhost kernel[0]: FireWire (OHCI) Apple ID 52 built-in now active, GUID 000d93ff fe466022; max speed s400.
    Jun 28 19:49:58 localhost kernel[0]: Security auditing service present
    Jun 28 19:49:58 localhost kernel[0]: BSM auditing present
    Jun 28 19:49:58 localhost kernel[0]: disabled
    Jun 28 19:49:58 localhost kernel[0]: rooting via boot-uuid from /chosen: 9FA6414F-22D6-339E-B202-EB404D827F6C
    Jun 28 19:49:58 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jun 28 19:49:58 localhost kernel[0]: Got boot device = IOService:/MacRISC4PE/ht@0,f2000000/AppleMacRiscHT/pci@3/IOPCI2PCIBridge/k2-sat a-root@C/AppleK2SATARoot/k2-sata@0/AppleK2SATA/ATADeviceNub@0/IOATABlockStorageD river/IOATABlockStorageDevice/IOBlockStorageDriver/ST380013AS Media/IOApplePartitionScheme/Untitled@3
    Jun 28 19:49:58 localhost kernel[0]: BSD root: disk0s3, major 14, minor 2
    Jun 28 19:49:58 localhost kernel[0]: AppleSMU -- shutdown cause = 2
    Jun 28 19:49:58 localhost kernel[0]: AppleSMU::PMU vers = 0x000d0054, SPU vers = 0x15, SDB vers = 0x01,
    Jun 28 19:49:58 localhost kernel[0]: Jettisoning kernel linker.
    Jun 28 19:49:58 localhost kernel[0]: Resetting IOCatalogue.
    Jun 28 19:49:58 localhost kernel[0]: Matching service count = 1
    Jun 28 19:49:58 localhost kernel[0]: Matching service count = 2
    Jun 28 19:49:58 localhost kernel[0]: Matching service count = 2
    Jun 28 19:49:58 localhost kernel[0]: Matching service count = 2
    Jun 28 19:49:58 localhost kernel[0]: Matching service count = 2
    Jun 28 19:49:58 localhost kernel[0]: Matching service count = 4
    Jun 28 19:49:58 localhost kernel[0]: SMUNeo2PlatformPlugin::initThermalProfile - entry
    Jun 28 19:49:58 localhost kernel[0]: NVDANV30HAL loaded and registered.
    Jun 28 19:49:58 localhost kernel[0]: SMUNeo2PlatformPlugin::initThermalProfile - calling adjust
    Jun 28 19:49:58 localhost kernel[0]: IPv6 packet filtering initialized, default to accept, logging disabled
    Jun 28 19:50:01 localhost diskarbitrationd[41]: disk0s3 hfs 9FA6414F-22D6-339E-B202-EB404D827F6C Macintosh HD /
    Jun 28 19:50:01 localhost diskarbitrationd[41]: disk1s1 msdos 00000000-0000-0000-0000-000000000000 LACIE [not mounted]
    Jun 28 19:50:02 localhost usbmuxd[37]: usbmuxd-196 built for iTunesNineTwo on May 17 2010 at 13:53:51, running 32 bit
    Jun 28 19:50:02 localhost DirectoryService[53]: Launched version 2.1 (v353.6)
    Jun 28 19:50:04 localhost kernel[0]: UniNEnet: Ethernet address 00:0d:93:46:60:22
    Jun 28 19:50:04 localhost lookupd[67]: lookupd (version 369.8) starting - Mon Jun 28 19:50:04 2010
    Jun 28 19:50:05 localhost kernel[0]: NVDA,Display-A: vram [a0000000:08000000]
    Jun 28 19:50:06 localhost kernel[0]: NVDA,Display-B: vram [00000000:01000000]
    Jun 28 19:50:07 localhost kernel[0]: UniNEnet::monitorLinkStatus - Link is up at 100 Mbps - Full Duplex
    Jun 28 19:50:07 Eric-Willies-Computer configd[39]: setting hostname to "Eric-Willies-Computer.local"
    Jun 28 19:50:09 Eric-Willies-Computer launchd: Server 2b1b in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[67]: exited abnormally: Hangup
    Jun 28 19:50:09 Eric-Willies-Computer configd[39]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Jun 28 19:50:09 Eric-Willies-Computer configd[39]: posting notification com.apple.system.config.network_change
    Jun 28 19:50:09 Eric-Willies-Computer lookupd[73]: lookupd (version 369.8) starting - Mon Jun 28 19:50:09 2010
    Jun 28 19:50:11 Eric-Willies-Computer mDNSResponder: Adding browse domain local.
    Jun 28 19:50:12 Eric-Willies-Computer /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Jun 28 19:50:13 Eric-Willies-Computer configd[39]: target=enable-network: disabled
    Jun 28 19:50:21 Eric-Willies-Computer loginwindow[71]: Login Window Started Security Agent
    Jun 28 22:39:21 Eric-Willies-Computer diskarbitrationd[41]: disk1s1 msdos 00000000-0000-0000-0000-000000000000 LACIE /Volumes/LACIE

  • Log Wait In Shutting Down The database

    Hi Exports,
    We have a production server. It contain its some of its datafile a cluster disk on windows server 2008. Yesterday Suddenly one of the cluster disk offline due to some network issue. And i found the following error on my alert log.
    Mon Mar 18 19:59:27 2013
    KCF: write/open error block=0xd13a6 online=1
    file=22 M:\LEGACY_ORADATA\LEGACY.DBF
    error=27070 txt: 'OSD-04016: Error queuing an asynchronous I/O request.
    O/S-Error: (OS 19) The media is write protected.'
    Mon Mar 18 19:59:27 2013
    Automatic datafile offline due to write error on
    file 22: M:\LEGACY_ORADATA\LEGACY.DBF
    Mon Mar 18 19:59:28 2013
    KCF: write/open error block=0xd3c10 online=1
    file=22 M:\LEGACY_ORADATA\LEGACY.DBF
    error=27070 txt: 'OSD-04016: Error queuing an asynchronous I/O request.
    O/S-Error: (OS 19) The media is write protected.'
    Mon Mar 18 19:59:28 2013
    Automatic datafile offline due to write error on
    file 22: M:\LEGACY_ORADATA\LEGACY.DBF
    Mon Mar 18 21:49:34 2013
    MMNL absent for 1204 secs; Foregrounds taking over
    Mon Mar 18 22:00:05 2013
    Errors in file d:\oracle\product\10.2.0\admin\legacy\bdump\legacy_j000_13148.trc:
    ORA-12012: error on auto execute of job 8950
    ORA-01115: IO error reading block from file ORA-01115: IO error reading block from file 5 (block # 106)
    ORA-01110: data file 5: 'M:\LEGACY_ORADATA\OLD_TRANSACTION.DBF'
    ORA-27091: unable to queue I/O
    ORA-27070: async read/write failed
    OSD-04006: ReadFile() failure, unable to read from file
    O/S-Error: (OS 21) The device is not ready.
    ORA-06512: at "SYS.PRVT_ADVISOR", line 1624
    ORA-06512: at "SYS.DBMS_ADVISOR", line 186
    ORA-06512: at "SYS.DBMS_SPACE", line 1500
    ORA-06512: at "SYS.DBMS_SPACE", line 1566
    (block # )
    After that cluster disk available i am getting the same error. when i am trying to recover the datafile then i got the the
    ORA-00283: recovery session canceled due to errors
    ORA-01124: cannot recover data file 22 - file is in use or recovery
    ORA-01110: data file 22
    So check the database open_mode and it shows READ WRITE.
    so i fire shut Immediate command. Now it take very long time to to shut down. Please suggest some solution as it is a prodtction database.
    Thanks in advance...
    Asit K. Mohanty

    Hi,
    What is the status of the files mentioned in the alert log? In the alert log, I see only 2 data files in the error messages you pasted, are all other data files safe and on some other disks which did not fail?
    select name,status from v$datafile;During shutdown, what are the messages in alert log file?
    Salman

Maybe you are looking for

  • How do I get a different URL to show up after an email form has been submitted?

    I have created a Form in DW CS5 and have some PHP server side code to mail it out. However, once the Submit button is pressed it refreshes back to the Form - How do I get a different page to show up after the Form is submitted?  I tried using a behav

  • Vendor's/manufacturer's QM system only valid to 06.05.2010

    Hi Team, Please help how  to correct following error. Vendor's/manufacturer's QM system only valid to 06.05.2010 Message no. QB301 Diagnosis The quality assurance system of the chosen vendor/manufacturer is no longer valid. You cannot, therefore, ord

  • OCA_Abuse exception 6402 while promoting the job, Bobj

    Hi Guys, I am facing below issue while promoting Webi reports from PRD to QA. Below is the error i am facing. The server supplied the following details: OCA_Abuse exception 6402 at [.\osca_fs_impl.cpp : 431]  46405 {D:\Apps\BOQ\SAP BusinessObjects En

  • Importing movie from bridge

    I am fairly new at this game so be gentle. I recently found a great tutorial on You tube on how to insert a movie into Photoshop using Image Ready. However when I drag the file from bridge and then go to my animation button making sure the file is no

  • Indexing External Hard Drives Help

    Hello, I'm sure this question has been asked in some for or another previously, however, a quick search didn't turn up the results I was looking for. Here's my question. In previous versions of OSX I could index certain drives, folders, etc. So how d