SSLEngine closing prematurely on SSLHandshakeException?

I have worked with the SSLEngine using non-blocked IO and it mostly works.
I do have a problem when a client connects and I get
WorkerThread-1, fatal error: 40: no cipher suites in common
javax.net.ssl.SSLHandshakeException: no cipher suites in common
WorkerThread-1, SEND TLSv1 ALERT:  fatal, description = handshake_failure
WorkerThread-1, WRITE: TLSv1 Alert, length = 2in a delegate task. The handshake status is NEED_WRAP after this but when
I call wrapHandshake I get
WorkerThread-1, fatal: engine already closed.  Rethrowing javax.net.ssl.SSLHandshakeException: no cipher suites in commonwhich means I'm not able to send the error reply to the connected client.
Is this a bug in SSLEngine or simply a misunderstanding on my part on what's going on.
I'm thankful for any insight on this.
regards
/Magnus Hulth�n

Thanks,
Yes that would make sense, and that is how I would expect it to work.
The problem is that when call wrap (not wrapHandshake as I mistakenly wrote in my previous post) I get the exception
WorkerThread-1, fatal: engine already closed.  Rethrowing javax.net.ssl.SSLHandshakeException: no cipher suites in commonJust to see if there was some timing issue involved I tried to call wrap immediately after the delegated task finished and still got the same exception.
What it looks like to me is that the engine needs to wrap the error message but is already closed by the handshake error and therefore not able to actually perform the wrap.

Similar Messages

  • Query result closing prematurely, Object closed error

    Hi guys
    I've discovered an unusual behaviour when iterating through a collection
    returned from a query.
    Scenario
    The code executes a query, iterates partially through the resultset and for
    each row calls a method which creates another object. Given that there
    could be thousands of rows, I commit the new objects every n times and then
    go back to the start of the loop which re-executes the query. This code runs
    fine when
    MAX_SCHEDULES_PER_TRANS <= com.solarmetric.kodo.DefaultFetchBatchSize.
    Problem
    If the DefaultFetchBatchSize is 10, and I commit every 11 iterations, then
    during the 3rd outer loop (ie commit has succeeded twice and the query has
    been executed 3 times) an exception is thrown when calling events.next() on
    the 10th element. The stack trace is included below, but it appears that
    the query resultset is somehow being closed early.
    If I increase the DefaultFetchBatchSize to 20, then I can also increase my
    MAX_SCHEDULES_PER_TRANS to 20 without getting the error.
    Any ideas?
    Regards
    Nathan
    Kodo 2.5.3
    SQLServer 2000
    Code Snippet
    private static final int MAX_SCHEDULES_PER_TRANS = 10;
    while (!terminated) {
    Collection col = (Collection) getQuery().execute(currentDate); //
    getQuery() method Creates query object once and reused in subsequent calls
    Iterator events = col.iterator();
    int counter = 0;
    boolean committed = false;
    while (events.hasNext() && !committed && !terminated) {
    Event event = (Event) events.next();
    event.schedule()
    counter++;
    if ((counter == MAX_SCHEDULES_PER_TRANS ) || !events.hasNext()) {
    try {
    context.getPersist().commitTransaction();
    committed = true;
    catch (OptimisticLockException e) {
    context.getPersist().rollbackTransaction();
    break;
    getQuery().close(col);
    Kodo.properties
    # Kodo JDO Properties configuration
    # DEVELOPMENT
    com.solarmetric.kodo.LicenseKey: xxxxxxx
    com.solarmetric.kodo.ee.ManagedRuntimeProperties=TransactionManagerName=Tran
    sactionFactory
    javax.jdo.PersistenceManagerFactoryClass=com.solarmetric.kodo.impl.jdbc.JDBC
    PersistenceManagerFactory
    javax.jdo.option.ConnectionDriverName=com.microsoft.jdbc.sqlserver.SQLServer
    Driver
    javax.jdo.option.ConnectionUserName=xxxxx
    javax.jdo.option.ConnectionPassword=xxxx
    javax.jdo.option.ConnectionURL=jdbc:microsoft:sqlserver://devsnetsql01:1433;
    SelectMethod=cursor;DatabaseName=devsnet09
    javax.jdo.option.RetainValues=true
    javax.jdo.option.RestoreValues=true
    javax.jdo.option.Optimistic=true
    javax.jdo.option.NontransactionalWrite=false
    javax.jdo.option.NontransactionalRead=true
    javax.jdo.option.Multithreaded=true
    javax.jdo.option.MsWait=5000
    javax.jdo.option.MinPool=0
    javax.jdo.option.MaxPool=0
    javax.jdo.option.IgnoreCache=false
    com.solarmetric.kodo.FlushBeforeQueries=with-connection
    com.solarmetric.kodo.impl.jdbc.schema.DBSequenceFactory=20
    com.solarmetric.kodo.impl.jdbc.StatementCacheMaxSize=0
    com.solarmetric.kodo.impl.jdbc.WarnOnPersistentTypeFailure=true
    com.solarmetric.kodo.impl.jdbc.SequenceFactoryClass=com.solarmetric.kodo.imp
    l.jdbc.schema.DBSequenceFactory
    com.solarmetric.kodo.impl.jdbc.FlatInheritanceMapping=true
    com.solarmetric.kodo.impl.jdbc.AutoReturnTimeout=10
    com.solarmetric.kodo.Logger=stdout
    com.solarmetric.kodo.EnableQueryExtensions=true
    com.solarmetric.kodo.DefaultFetchThreshold=30
    com.solarmetric.kodo.DefaultFetchBatchSize=10
    com.solarmetric.kodo.impl.jdbc.TransactionIsolation=READ_COMMITTED
    com.solarmetric.kodo.ee.ManagedRuntimeProperties=TransactionManagerMethod=co
    m.ibm.ejs.jts.jta.TransactionManagerFactory.getTransactionManager
    com.solarmetric.kodo.ee.ManagedRuntimeClass=com.solarmetric.kodo.ee.Invocati
    onManagedRuntime
    Stack trace
    com.solarmetric.kodo.runtime.DataStoreException: java.sql.SQLException:
    [Microsoft][SQLServer 2000 Driver for JDBC]Object has been closed.
    [code=0;state=HY000]
    NestedThrowables:
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Object has
    been closed.
    at
    com.solarmetric.kodo.impl.jdbc.runtime.SQLExceptions.throwDataStore(SQLExcep
    tions.java:64)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(LazyRes
    ultList.java:223)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultList.jav
    a:142)
    at java.util.AbstractList$Itr.next(AbstractList.java:431)
    at
    com.solarmetric.kodo.runtime.objectprovider.ResultListIterator.next(ResultLi
    stIterator.java:49)
    at com.mallesons.servicenet.ta.shared.BOIterator.next(BOIterator.java:48)
    at
    com.mallesons.servicenet.ta.event.SchedulerThread.process(Scheduler.java:171
    at com.mallesons.servicenet.ta.event.SchedulerThread.run(Scheduler.java:122)
    NestedThrowablesStackTrace:
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Object has
    been closed.
    at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown
    Source)(Inlined Compiled Code)
    at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown
    Source)(Inlined Compiled Code)
    at com.microsoft.jdbc.base.BaseConnection.validateClosedState(Unknown
    Source)(Inlined Compiled Code)
    at com.microsoft.jdbc.base.BaseStatement.validateClosedState(Unknown
    Source)(Inlined Compiled Code)
    at com.microsoft.jdbc.base.BaseResultSet.validateClosedState(Unknown
    Source)(Compiled Code)
    at com.microsoft.jdbc.base.BaseResultSet.getRow(Unknown Source)
    at
    com.solarmetric.datasource.ResultSetWrapper.getRow(ResultSetWrapper.java:465
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(LazyRes
    ultList.java:186)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultList.jav
    a:142)
    at java.util.AbstractList$Itr.next(AbstractList.java:431)
    at
    com.solarmetric.kodo.runtime.objectprovider.ResultListIterator.next(ResultLi
    stIterator.java:49)
    at com.mallesons.servicenet.ta.shared.BOIterator.next(BOIterator.java:48)
    at
    com.mallesons.servicenet.ta.event.SchedulerThread.process(Scheduler.java:171
    at com.mallesons.servicenet.ta.event.SchedulerThread.run(Scheduler.java:122)

    Thanks for pointing out the optimisticLockException catch error. That would
    have been a bug but it hasn't been hit yet as I've only ever run one
    instance of this app!!
    The BOIterator is just wrapper layer and I have removed it to ensure it is
    not the culprit. Still getting the same error.
    I have done some more testing and have narrowed down the problem a little.
    It seems to only occur when I update one of the columns that is being used
    in the query. If I update a column that is not used in the query, it works
    fine.
    com.solarmetric.kodo.runtime.DataStoreException: java.sql.SQLException:
    [Microsoft][SQLServer 2000 Driver for JDBC]Object has been closed.
    [code=0;state=HY000]
    NestedThrowables:
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Object has
    been closed.
    at
    com.solarmetric.kodo.impl.jdbc.runtime.SQLExceptions.throwDataStore(SQLExcep
    tions.java:64)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(LazyRes
    ultList.java:223)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultList.jav
    a:142)
    at java.util.AbstractList$Itr.next(AbstractList.java:431)
    at
    com.solarmetric.kodo.runtime.objectprovider.ResultListIterator.next(ResultLi
    stIterator.java:49)
    at
    com.mallesons.servicenet.ta.event.SchedulerThread.process(Scheduler.java:197
    at com.mallesons.servicenet.ta.event.SchedulerThread.run(Scheduler.java:143)
    NestedThrowablesStackTrace:
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Object has
    been closed.
    at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
    at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
    at com.microsoft.jdbc.base.BaseConnection.validateClosedState(Unknown
    Source)
    at com.microsoft.jdbc.base.BaseStatement.validateClosedState(Unknown Source)
    at com.microsoft.jdbc.base.BaseResultSet.validateClosedState(Unknown Source)
    at com.microsoft.jdbc.base.BaseResultSet.getRow(Unknown Source)
    at
    com.solarmetric.datasource.ResultSetWrapper.getRow(ResultSetWrapper.java:478
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(LazyRes
    ultList.java:186)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultList.jav
    a:142)
    at java.util.AbstractList$Itr.next(AbstractList.java:431)
    at
    com.solarmetric.kodo.runtime.objectprovider.ResultListIterator.next(ResultLi
    stIterator.java:49)
    at
    com.mallesons.servicenet.ta.event.SchedulerThread.process(Scheduler.java:197
    at com.mallesons.servicenet.ta.event.SchedulerThread.run(Scheduler.java:143)
    2003-10-27 15:26:40,142 DEBUG - SchedulerThread.run() - exit
    "Marc Prud'hommeaux" <[email protected]> wrote in message
    news:[email protected]...
    Nathan-
    I guess you are right that it doesn't look like the query result is
    being kept open between commits. I do notice that the block that catches
    the OptimisticLockException doesn't break out of the loop though: can
    you check to ensure that one isn't getting thrown?
    Also, what is the com.mallesons.servicenet.ta.shared.BOIterator stuff?
    If it is a wrapper layer that you have around the query execution,
    can you try removing it, just to ensure that it isn't misbehaving in
    some way?
    In article <[email protected]>, nathan boyes wrote:
    Hi Marc,
    Bug 718 certainly seems similar, however I still don't think it is
    necessarily the problem in this case. That particular bug relates to the
    resultset that was opened prior to commit, not remaining open after the
    commit. However, once I've committed, I call query.closeAll() then re
    execute the query. I would expect this to give me a new resultset that
    would not be affected by the previous commit.
    Also the CURSOR_CLOSE_ON_COMMIT is disabled by default and we haven't
    enabled it. A query against the database using one of the SQLServer
    functions confirms that this setting is false on the server.
    Predictably, instantiating the entire collection also fixes the problem.
    I
    guess this is similar to setting DefaultFetchThreshold = -1.
    Not really sure what else to try.
    "Marc Prud'hommeaux" <[email protected]> wrote in message
    news:[email protected]...
    Nathan-
    This sounds to me like
    http://bugzilla.solarmetric.com/show_bug.cgi?id=718 , even though it is
    not known to happen for SQLServer. If, before you commit, you
    instantiate the entire "col" list (with something like
    "new LinkedList (col)"), do you still see the problem?
    If this is indeed the problem, it seems that this is a server option
    that you can configure. If you disable CURSOR_CLOSE_ON_COMMIT on the
    server, do you still see the problem? See:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_set-set_48kz.asp
    >>>
    >>>
    >>>
    >>>
    In article <[email protected]>, nathan boyes wrote:
    I have upgraded to 2.5.5 and am now calling query.closeAll() neither
    of
    which had any effect. When I set DefaultFetchThreshold to -1, thenthe
    problem disappeared.
    For efficiency, if I am iterating through 50 objects beforecommitting
    then
    it is probably worth setting
    DefaultFetchThreshold=50
    DefaultFetchBatchSize=50
    which will run without problem.
    However, that doesn't address the underlying problem that could stilloccur
    in other parts of our system.
    "Stephen Kim" <[email protected]> wrote in message
    news:[email protected]...
    First can you upgrade to Kodo 2.5.4 and see if the problem persists?
    If so, can you for the sake of debugging try setting
    DefaultFetchThreshold to -1?
    Also you should be calling either query.closeAll () or query.close(events).
    nathan boyes wrote:
    Hi guys
    I've discovered an unusual behaviour when iterating through a
    collection
    returned from a query.
    Scenario
    The code executes a query, iterates partially through the
    resultset
    and
    for
    each row calls a method which creates another object. Given that
    there
    could be thousands of rows, I commit the new objects every n timesand
    then
    go back to the start of the loop which re-executes the query. This
    code
    runs
    fine when
    MAX_SCHEDULES_PER_TRANS <=
    com.solarmetric.kodo.DefaultFetchBatchSize.
    Problem
    If the DefaultFetchBatchSize is 10, and I commit every 11
    iterations,
    then
    during the 3rd outer loop (ie commit has succeeded twice and the
    query
    has
    been executed 3 times) an exception is thrown when calling
    events.next()
    on
    the 10th element. The stack trace is included below, but it
    appears
    that
    the query resultset is somehow being closed early.
    If I increase the DefaultFetchBatchSize to 20, then I can also
    increase
    my
    MAX_SCHEDULES_PER_TRANS to 20 without getting the error.
    Any ideas?
    Regards
    Nathan
    Kodo 2.5.3
    SQLServer 2000
    Code Snippet
    private static final int MAX_SCHEDULES_PER_TRANS = 10;
    while (!terminated) {
    Collection col = (Collection) getQuery().execute(currentDate);
    getQuery() method Creates query object once and reused insubsequent
    calls
    Iterator events = col.iterator();
    int counter = 0;
    boolean committed = false;
    while (events.hasNext() && !committed && !terminated) {
    Event event = (Event) events.next();
    event.schedule()
    counter++;
    if ((counter == MAX_SCHEDULES_PER_TRANS ) ||
    !events.hasNext()) {
    >>>>>>
    try {
    context.getPersist().commitTransaction();
    committed = true;
    catch (OptimisticLockException e) {
    context.getPersist().rollbackTransaction();
    break;
    getQuery().close(col);
    Kodo.properties
    # Kodo JDO Properties configuration
    # DEVELOPMENT
    com.solarmetric.kodo.LicenseKey: xxxxxxx
    com.solarmetric.kodo.ee.ManagedRuntimeProperties=TransactionManagerName=Tran
    sactionFactory
    javax.jdo.PersistenceManagerFactoryClass=com.solarmetric.kodo.impl.jdbc.JDBC
    PersistenceManagerFactory
    javax.jdo.option.ConnectionDriverName=com.microsoft.jdbc.sqlserver.SQLServer
    Driver
    javax.jdo.option.ConnectionUserName=xxxxx
    javax.jdo.option.ConnectionPassword=xxxx
    javax.jdo.option.ConnectionURL=jdbc:microsoft:sqlserver://devsnetsql01:1433;
    SelectMethod=cursor;DatabaseName=devsnet09
    javax.jdo.option.RetainValues=true
    javax.jdo.option.RestoreValues=true
    javax.jdo.option.Optimistic=true
    javax.jdo.option.NontransactionalWrite=false
    javax.jdo.option.NontransactionalRead=true
    javax.jdo.option.Multithreaded=true
    javax.jdo.option.MsWait=5000
    javax.jdo.option.MinPool=0
    javax.jdo.option.MaxPool=0
    javax.jdo.option.IgnoreCache=false
    com.solarmetric.kodo.FlushBeforeQueries=with-connection
    com.solarmetric.kodo.impl.jdbc.schema.DBSequenceFactory=20
    com.solarmetric.kodo.impl.jdbc.StatementCacheMaxSize=0
    com.solarmetric.kodo.impl.jdbc.WarnOnPersistentTypeFailure=true
    com.solarmetric.kodo.impl.jdbc.SequenceFactoryClass=com.solarmetric.kodo.imp
    l.jdbc.schema.DBSequenceFactory
    com.solarmetric.kodo.impl.jdbc.FlatInheritanceMapping=true
    com.solarmetric.kodo.impl.jdbc.AutoReturnTimeout=10
    com.solarmetric.kodo.Logger=stdout
    com.solarmetric.kodo.EnableQueryExtensions=true
    com.solarmetric.kodo.DefaultFetchThreshold=30
    com.solarmetric.kodo.DefaultFetchBatchSize=10
    com.solarmetric.kodo.impl.jdbc.TransactionIsolation=READ_COMMITTED
    com.solarmetric.kodo.ee.ManagedRuntimeProperties=TransactionManagerMethod=co
    m.ibm.ejs.jts.jta.TransactionManagerFactory.getTransactionManager
    com.solarmetric.kodo.ee.ManagedRuntimeClass=com.solarmetric.kodo.ee.Invocati
    onManagedRuntime
    Stack trace
    com.solarmetric.kodo.runtime.DataStoreException:java.sql.SQLException:
    [Microsoft][SQLServer 2000 Driver for JDBC]Object has been closed.
    [code=0;state=HY000]
    NestedThrowables:
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver forJDBCObject
    has
    been closed.
    at
    com.solarmetric.kodo.impl.jdbc.runtime.SQLExceptions.throwDataStore(SQLExcep
    tions.java:64)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(LazyRes
    ultList.java:223)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultList.jav
    a:142)
    at java.util.AbstractList$Itr.next(AbstractList.java:431)
    at
    com.solarmetric.kodo.runtime.objectprovider.ResultListIterator.next(ResultLi
    stIterator.java:49)
    atcom.mallesons.servicenet.ta.shared.BOIterator.next(BOIterator.java:48)
    >>>>>>
    at
    com.mallesons.servicenet.ta.event.SchedulerThread.process(Scheduler.java:171
    atcom.mallesons.servicenet.ta.event.SchedulerThread.run(Scheduler.java:122)
    >>>>>>
    NestedThrowablesStackTrace:
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver forJDBCObject
    has
    been closed.
    at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown
    Source)(Inlined Compiled Code)
    at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown
    Source)(Inlined Compiled Code)
    at
    com.microsoft.jdbc.base.BaseConnection.validateClosedState(Unknown
    Source)(Inlined Compiled Code)
    atcom.microsoft.jdbc.base.BaseStatement.validateClosedState(Unknown
    Source)(Inlined Compiled Code)
    atcom.microsoft.jdbc.base.BaseResultSet.validateClosedState(Unknown
    Source)(Compiled Code)
    at com.microsoft.jdbc.base.BaseResultSet.getRow(Unknown Source)
    at
    com.solarmetric.datasource.ResultSetWrapper.getRow(ResultSetWrapper.java:465
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(LazyRes
    ultList.java:186)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultList.jav
    a:142)
    at java.util.AbstractList$Itr.next(AbstractList.java:431)
    at
    com.solarmetric.kodo.runtime.objectprovider.ResultListIterator.next(ResultLi
    stIterator.java:49)
    atcom.mallesons.servicenet.ta.shared.BOIterator.next(BOIterator.java:48)
    >>>>>>
    at
    com.mallesons.servicenet.ta.event.SchedulerThread.process(Scheduler.java:171
    atcom.mallesons.servicenet.ta.event.SchedulerThread.run(Scheduler.java:122)
    >>>>>>
    >>>>>>
    >>>>>
    Stephen Kim
    [email protected]
    SolarMetric, Inc.
    http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Zip File closed

    Hi
    I am trying to use the new Mustang release which has the CMS bug causing long rescans fixed. However, I am running into this exception which occurs in b71 but not Java 1.5.0
    Caused by: java.lang.IllegalStateException: zip file closed
                   at java.util.zip.ZipFile.ensureOpen(ZipFile.java:402)
                   at java.util.zip.ZipFile.getEntry(ZipFile.java:147)
                   at java.util.jar.JarFile.getEntry(JarFile.java:205)
                   at com.foo.cam.net.jar.URLJarFile.getEntry(URLJarFile.java:65)
                   at java.util.jar.JarFile.getJarEntry(JarFile.java:188)
                   at sun.misc.JarIndex.getJarIndex(JarIndex.java:96)
                   at sun.misc.URLClassPath$JarLoader$1.run(URLClassPath.java:606)
                   at java.security.AccessController.doPrivileged(Native Method)
                   at sun.misc.URLClassPath$JarLoader.ensureOpen(URLClassPath.java:597)
                   at sun.misc.URLClassPath$JarLoader.<init>(URLClassPath.java:559)
                   at sun.misc.URLClassPath$3.run(URLClassPath.java:331)
                   at java.security.AccessController.doPrivileged(Native Method)
                   at sun.misc.URLClassPath.getLoader(URLClassPath.java:320)
                   at sun.misc.URLClassPath.getLoader(URLClassPath.java:297)
                   at sun.misc.URLClassPath.access$000(URLClassPath.java:59)
                   at sun.misc.URLClassPath$1.next(URLClassPath.java:194)
                   at sun.misc.URLClassPath$1.hasMoreElements(URLClassPath.java:205)
                   at java.net.URLClassLoader$3$1.run(URLClassLoader.java:393)
                   at java.security.AccessController.doPrivileged(Native Method)
                   at java.net.URLClassLoader$3.next(URLClassLoader.java:390)
                   at java.net.URLClassLoader$3.hasMoreElements(URLClassLoader.java:415)
                   at sun.misc.CompoundEnumeration.next(CompoundEnumeration.java:27)
                   at sun.misc.CompoundEnumeration.hasMoreElements(CompoundEnumeration.java:36)
                   at sun.misc.Service$LazyIterator.hasNext(Service.java:255)
                   at java.sql.DriverManager.loadInitialDrivers(DriverManager.java:476)
                   at java.sql.DriverManager.initialize(DriverManager.java:579)
                   at java.sql.DriverManager.registerDriver(DriverManager.java:270)
                   at com.sybase.jdbc2.jdbc.SybDriver.registerWithDriverManager(SybDriver.java:561)
                   at com.sybase.jdbc2.jdbc.SybDriver.<init>(SybDriver.java:113)
                   at com.sybase.jdbc2.jdbc.SybDriver.<clinit>(SybDriver.java:79)
                   ... 14 moreThis seems that the jar file has been closed prematurely, causing an exception when it is being read. I cannot seem to find any regression bug in the database with this symptom. Any ideas for a solution or workaround for this problem? Any help would be much appreciated.
    Thanks.

    Currently i have the same problem with the bouncy castle JCE security jar :
    No such algorithm: DES
    java.security.NoSuchAlgorithmException: No such algorithm: DES
         at javax.crypto.Cipher.getInstance(DashoA14*..)
         at javax.crypto.Cipher.getInstance(DashoA14*..)
    Caused by: java.security.NoSuchAlgorithmException: Error constructing implementation (algorithm: DES, provider: BC, class: org.bouncycastle.jce.provider.JCEBlockCipher$DES)
         at java.security.Provider$Service.newInstance(Unknown Source)
         ... 9 more
    Caused by: java.lang.IllegalStateException: zip file closed
         at java.util.zip.ZipFile.ensureOpen(Unknown Source)
         at java.util.zip.ZipFile.getEntry(Unknown Source)
         at java.util.jar.JarFile.getEntry(Unknown Source)
         at com.sun.deploy.cache.CachedJarFile.getEntry(Unknown Source)
         at java.util.jar.JarFile.getJarEntry(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.getResource(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.security.Provider$Service.getImplClass(Unknown Source)
         ... 10 more

  • Non-blocking SSLEngine example

    Since the example of using SSLEngine with non-blocking IO that comes with Java is quite limited, I have decided to release my own for anyone who wants to see how I solved the various problems that you must face. The example is designed to be a generic non-blocking server that supports SSL.
    This is only meant to be an example, as I wrote this mostly in order to learn how to use the SSLEngine, and therefore has certain limitations, and is not thouroughly tested.
    You can download the file at: http://members.aol.com/ben77/nio_server2.tar.gz
    Here is also the code for SecureIO, which is roughly analagous to the Java example's ChannelIOSecure:
    package nio_server2.internalio;
    import java.io.IOException;
    import java.nio.ByteBuffer;
    import java.nio.channels.*;
    import java.util.concurrent.*;
    import javax.net.ssl.*;
    import static javax.net.ssl.SSLEngineResult.HandshakeStatus.*;
    * Does IO based on a <code>SocketChannel</code> with all data encrypted using
    * SSL.
    * @author ben
    public class SecureIO extends InsecureIO {
          * SSLTasker is responsible for dealing with all long running tasks required
          * by the SSLEngine
          * @author ben
         private class SSLTasker implements Runnable {
               * @inheritDoc
              public void run() {
                   Runnable r;
                   while ((r = engine.getDelegatedTask()) != null) {
                        r.run();
                   if (inNet.position() > 0) {
                        regnow(); // we may already have read what is needed
                   try {
                        System.out.println(":" + engine.getHandshakeStatus());
                        switch (engine.getHandshakeStatus()) {
                             case NOT_HANDSHAKING:
                                  break;
                             case FINISHED:
                                  System.err.println("Detected FINISHED in tasker");
                                  Thread.dumpStack();
                                  break;
                             case NEED_TASK:
                                  System.err.println("Detected NEED_TASK in tasker");
                                  assert false;
                                  break;
                             case NEED_WRAP:
                                  rereg(SelectionKey.OP_WRITE);
                                  break;
                             case NEED_UNWRAP:
                                  rereg(SelectionKey.OP_READ);
                                  break;
                   } catch (IOException e) {
                        e.printStackTrace();
                        try {
                             shutdown();
                        } catch (IOException ex) {
                             ex.printStackTrace();
                   hsStatus = engine.getHandshakeStatus();
                   isTasking = false;
         private SSLEngine engine;
         private ByteBuffer inNet; // always cleared btwn calls
         private ByteBuffer outNet; // when hasRemaining, has data to write.
         private static final ByteBuffer BLANK = ByteBuffer.allocate(0);
         private boolean initialHandshakeDone = false;
         private volatile boolean isTasking = false;
         private boolean handshaking = true;
         private SSLEngineResult.HandshakeStatus hsStatus = NEED_UNWRAP;
         private boolean shutdownStarted;
         private static Executor executor = getDefaultExecutor();
         private SSLTasker tasker = new SSLTasker();
         private ByteBuffer temp;
          * @return the default <code>Executor</code>
         public static Executor getDefaultExecutor() {
              return new ThreadPoolExecutor(3, Integer.MAX_VALUE, 60L,
                        TimeUnit.SECONDS, new SynchronousQueue<Runnable>(),
                        new DaemonThreadFactory());
         private static class DaemonThreadFactory implements ThreadFactory {
              private static ThreadFactory defaultFactory = Executors
                        .defaultThreadFactory();
               * Creates a thread using the default factory, but sets it to be daemon
               * before returning it
               * @param r
               *            the runnable to run
               * @return the new thread
              public Thread newThread(Runnable r) {
                   Thread t = defaultFactory.newThread(r);
                   t.setDaemon(true);
                   return t;
          * @return the executor currently being used for all long-running tasks
         public static Executor getExecutor() {
              return executor;
          * Changes the executor being used for all long-running tasks. Currently
          * running tasks will still use the old executor
          * @param executor
          *            the new Executor to use
         public static void setExecutor(Executor executor) {
              SecureIO.executor = executor;
          * Creates a new <code>SecureIO</code>
          * @param channel
          *            the channel to do IO on.
          * @param sslCtx
          *            the <code>SSLContext</code> to use
         public SecureIO(SocketChannel channel, SSLContext sslCtx) {
              super(channel);
              engine = sslCtx.createSSLEngine();
              engine.setUseClientMode(false);
              int size = engine.getSession().getPacketBufferSize();
              inNet = ByteBuffer.allocate(size);
              outNet = ByteBuffer.allocate(size);
              outNet.limit(0);
              temp = ByteBuffer.allocate(engine.getSession()
                        .getApplicationBufferSize());
         private void doTasks() throws IOException {
              rereg(0); // don't do anything until the task is done.
              isTasking = true;
              SecureIO.executor.execute(tasker);
          * Does all handshaking required by SSL.
          * @param dst
          *            the destination from an application data read
          * @return true if all needed SSL handshaking is currently complete.
          * @throws IOException
          *             if there are errors in handshaking.
         @Override
         public boolean doHandshake(ByteBuffer dst) throws IOException {
              if (!handshaking) {
                   return true;
              if (dst.remaining() < minBufferSize()) {
                   throw new IllegalArgumentException("Buffer has only "
                             + dst.remaining() + " left + minBufferSize is "
                             + minBufferSize());
              if (outNet.hasRemaining()) {
                   if (!flush()) {
                        return false;
                   switch (hsStatus) {
                        case FINISHED:
                             handshaking = false;
                             initialHandshakeDone = true;
                             rereg(SelectionKey.OP_READ | SelectionKey.OP_WRITE);
                             return true;
                        case NEED_UNWRAP:
                             rereg(SelectionKey.OP_READ);
                             break;
                        case NEED_TASK:
                             doTasks();
                             return false;
                        case NOT_HANDSHAKING:
                             throw new RuntimeException(
                                       "NOT_HANDSHAKING encountered when handshaking");
              SSLEngineResult res;
              System.out.println(hsStatus + "1" + handshaking);
              switch (hsStatus) {
                   case NEED_UNWRAP:
                        int i;
                        do {
                             rereg(SelectionKey.OP_READ);
                             i = super.read(inNet);
                             if (i < 0) {
                                  engine.closeInbound();
                                  handshaking = false;
                                  shutdown();
                                  return true;
                             if (i == 0 && inNet.position() == 0) {
                                  return false;
                             inloop: do {
                                  inNet.flip();
                                  temp.clear();
                                  res = engine.unwrap(inNet, temp);
                                  inNet.compact();
                                  temp.flip();
                                  if (temp.hasRemaining()) {
                                       dst.put(temp);
                                  switch (res.getStatus()) {
                                       case OK:
                                            hsStatus = res.getHandshakeStatus();
                                            if (hsStatus == NEED_TASK) {
                                                 doTasks();
                                            // if (hsStatus == FINISHED) {
                                            // // if (!initialHandshakeDone) {
                                            // // throw new RuntimeException(hsStatus
                                            // // + " encountered when handshaking");
                                            // initialHandshakeDone = true;
                                            // handshaking=false;
                                            // key.interestOps(SelectionKey.OP_READ
                                            // | SelectionKey.OP_WRITE);
                                            // TODO check others?
                                            break;
                                       case BUFFER_UNDERFLOW:
                                            break inloop;
                                       case BUFFER_OVERFLOW:
                                       case CLOSED:
                                            throw new RuntimeException(res.getStatus()
                                                      + " encountered when handshaking");
                             } while (hsStatus == NEED_UNWRAP
                                       && dst.remaining() >= minBufferSize());
                        } while (hsStatus == NEED_UNWRAP
                                  && dst.remaining() >= minBufferSize());
                        if (inNet.position() > 0) {
                             System.err.println(inNet);
                        if (hsStatus != NEED_WRAP) {
                             break;
                        } // else fall through
                        rereg(SelectionKey.OP_WRITE);
                   case NEED_WRAP:
                        do {
                             outNet.clear();
                             res = engine.wrap(BLANK, outNet);
                             switch (res.getStatus()) {
                                  case OK:
                                       outNet.flip();
                                       hsStatus = res.getHandshakeStatus();
                                       if (hsStatus == NEED_TASK) {
                                            doTasks();
                                            return false;
                                       // TODO check others?
                                       break;
                                  case BUFFER_OVERFLOW:
                                       outNet.limit(0);
                                       int size = engine.getSession()
                                                 .getPacketBufferSize();
                                       if (outNet.capacity() < size) {
                                            outNet = ByteBuffer.allocate(size);
                                       } else { // shouldn't happen
                                            throw new RuntimeException(res.getStatus()
                                                      + " encountered when handshaking");
                                  case BUFFER_UNDERFLOW: // engine shouldn't care
                                  case CLOSED:
                                       throw new RuntimeException(res.getStatus()
                                                 + " encountered when handshaking");
                        } while (flush() && hsStatus == NEED_WRAP);
                        break;
                   case NEED_TASK:
                        doTasks();
                        return false;
                   case FINISHED:
                        break; // checked below
                   case NOT_HANDSHAKING:
                        System.err.println(hsStatus + " encountered when handshaking");
                        handshaking = false;
                        initialHandshakeDone = true;
                        rereg(SelectionKey.OP_READ | SelectionKey.OP_WRITE);
              if (hsStatus == FINISHED) {
                   // if (!initialHandshakeDone) {
                   // throw new RuntimeException(hsStatus
                   // + " encountered when handshaking");
                   initialHandshakeDone = true;
                   handshaking = false;
                   rereg(SelectionKey.OP_READ | SelectionKey.OP_WRITE);
              System.out.println(hsStatus + "2" + handshaking);
              return !handshaking;
          * Attempts to flush all buffered data to the channel.
          * @return true if all buffered data has been written.
          * @throws IOException
          *             if there are errors writing the data
         @Override
         public boolean flush() throws IOException {
              if (!outNet.hasRemaining()) {
                   return true;
              super.write(outNet);
              return !outNet.hasRemaining();
          * @return the largest amount of application data that could be read from
          *         the channel at once.
         @Override
         public int minBufferSize() {
              return engine.getSession().getApplicationBufferSize();
          * Begins or proceeds with sending an SSL shutdown message to the client.
          * @return true if all needed IO is complete
          * @throws IOException
          *             if there are errors sending the message.
         @Override
         public boolean shutdown() throws IOException {
              if (!shutdownStarted) {
                   shutdownStarted = true;
                   engine.closeOutbound();
              if (outNet.hasRemaining() && !flush()) {
                   return false;
              SSLEngineResult result;
              do {
                   outNet.clear();
                   result = engine.wrap(BLANK, outNet);
                   if (result.getStatus() != SSLEngineResult.Status.CLOSED) {
                        throw new IOException("Unexpected result in shutdown:"
                                  + result.getStatus());
                   outNet.flip();
                   if (outNet.hasRemaining() && !flush()) {
                        return false;
              } while (result.getHandshakeStatus() == NEED_WRAP);
              return !outNet.hasRemaining();
          * Reads all possible data into the <code>ByteBuffer</code>.
          * @param dst
          *            the buffer to read into.
          * @return the number of bytes read, or -1 if the channel or
          *         <code>SSLEngine</code> is closed
          * @throws IllegalStateException
          *             if the initial handshake isn't complete *
          * @throws IOException
          *             if there are errors.
          * @throws IllegalStateException
          *             if the initial handshake isn't complete
          * @throws IllegalArgumentException
          *             if the remaining space in dst is less than
          *             {@link SecureIO#minBufferSize()}
         @Override
         public int read(ByteBuffer dst) throws IOException {
              if (!initialHandshakeDone) {
                   throw new IllegalStateException("Initial handshake incomplete");
              if (dst.remaining() < minBufferSize()) {
                   throw new IllegalArgumentException("Buffer has only "
                             + dst.remaining() + " left + minBufferSize is "
                             + minBufferSize());
              int sPos = dst.position();
              int i;
              while ((i = super.read(inNet)) != 0
                        && dst.remaining() >= minBufferSize()) {
                   if (i < 0) {
                        engine.closeInbound();
                        shutdown();
                        return -1;
                   do {
                        inNet.flip();
                        temp.clear();
                        SSLEngineResult result = engine.unwrap(inNet, temp);
                        inNet.compact();
                        temp.flip();
                        if (temp.hasRemaining()) {
                             dst.put(temp);
                        switch (result.getStatus()) {
                             case BUFFER_UNDERFLOW:
                                  continue;
                             case BUFFER_OVERFLOW:
                                  throw new Error();
                             case CLOSED:
                                  return -1;
                             // throw new IOException("SSLEngine closed");
                             case OK:
                                  checkHandshake();
                                  break;
                   } while (inNet.position() > 0);
              return dst.position() - sPos;
          * Encrypts data and writes it to the channel.
          * @param src
          *            the data to write
          * @return the number of bytes written
          * @throws IOException
          *             if there are errors.
          * @throws IllegalStateException
          *             if the initial handshake isn't complete
         @Override
         public int write(ByteBuffer src) throws IOException {
              if (!initialHandshakeDone) {
                   throw new IllegalStateException("Initial handshake incomplete");
              if (!flush()) {
                   return 0;
              int written = 0;
              outer: while (src.hasRemaining()) {
                   outNet.clear(); // we flushed it
                   SSLEngineResult result = engine.wrap(src, outNet);
                   outNet.flip();
                   switch (result.getStatus()) {
                        case BUFFER_UNDERFLOW:
                             break outer; // not enough left to send (prob won't
                        // happen - padding)
                        case BUFFER_OVERFLOW:
                             if (!flush()) {
                                  break outer; // can't remake while still have
                                  // stuff to write
                             int size = engine.getSession().getPacketBufferSize();
                             if (outNet.capacity() < size) {
                                  outNet = ByteBuffer.allocate(size);
                             } else { // shouldn't happen
                                  throw new RuntimeException(hsStatus
                                            + " encountered when handshaking");
                             continue; // try again
                        case CLOSED:
                             throw new IOException("SSLEngine closed");
                        case OK:
                             checkHandshake();
                             break;
                   if (!flush()) {
                        break;
              return written;
         private boolean hasRemaining(ByteBuffer[] src) {
              for (ByteBuffer b : src) {
                   if (b.hasRemaining()) {
                        return true;
              return false;
          * Encrypts data and writes it to the channel.
          * @param src
          *            the data to write
          * @return the number of bytes written
          * @throws IOException
          *             if there are errors.
          * @throws IllegalStateException
          *             if the initial handshake isn't complete
         @Override
         public long write(ByteBuffer[] src) throws IOException {
              if (!initialHandshakeDone) {
                   throw new IllegalStateException("Initial handshake incomplete");
              if (!flush()) {
                   return 0;
              int written = 0;
              outer: while (hasRemaining(src)) {
                   outNet.clear(); // we flushed it
                   SSLEngineResult result = engine.wrap(src, outNet);
                   outNet.flip();
                   switch (result.getStatus()) {
                        case BUFFER_UNDERFLOW:
                             break outer; // not enough left to send (prob won't
                        // happen - padding)
                        case BUFFER_OVERFLOW:
                             if (!flush()) {
                                  break outer; // can't remake while still have
                                  // stuff to write
                             int size = engine.getSession().getPacketBufferSize();
                             if (outNet.capacity() < size) {
                                  outNet = ByteBuffer.allocate(size);
                             } else { // shouldn't happen
                                  throw new RuntimeException(hsStatus
                                            + " encountered when handshaking");
                             continue; // try again
                        case CLOSED:
                             throw new IOException("SSLEngine closed");
                        case OK:
                             checkHandshake();
                             break;
                   if (!flush()) {
                        break;
              return written;
         private void checkHandshake() throws IOException {
              // Thread.dumpStack();
              // System.out.println(engine.getHandshakeStatus());
              outer: while (true) {
                   switch (engine.getHandshakeStatus()) {
                        case NOT_HANDSHAKING:
                             initialHandshakeDone = true;
                             handshaking = false;
                             rereg(SelectionKey.OP_READ | SelectionKey.OP_WRITE);
                             return;
                        case FINISHED:
                             // this shouldn't happen, I don't think. If it does, say
                             // where.
                             System.err.println("Detected FINISHED in checkHandshake");
                             Thread.dumpStack();
                             break outer;
                        case NEED_TASK:
                             if (isTasking) {
                                  while (isTasking) { // TODO: deal with by reg?
                                       Thread.yield();
                                       try {
                                            Thread.sleep(1);
                                       } catch (InterruptedException ex) {
                                            // TODO Auto-generated catch block
                                            ex.printStackTrace();
                                  break;
                             doTasks();
                             break;
                        case NEED_WRAP:
                             rereg(SelectionKey.OP_WRITE);
                             break outer;
                        case NEED_UNWRAP:
                             rereg(SelectionKey.OP_READ);
                             break outer;
              handshaking = true;
              hsStatus = engine.getHandshakeStatus();
          * @return true if the channel is open and no shutdown message has been
          *         recieved.
         @Override
         public boolean isOpen() {
              return super.isOpen() && !engine.isInboundDone();
    }

    That's the reason for checkHandshake(), it is called on every read and write and detects a new handshake and configures the setup properly. As far as the server requesting a new handshake, I did not put that in. It would be simple enough though, you would just need to call SSLEngine.beginHandshake() + then call checkHandshake().
    Also, my echo server example had a bug, I forgot to call bu.flip() before queueWrite(), so I fixed that, as well as adding an onConnect method that is called when a connection has been established. The new version should be up at the origional address shortly.

  • Connection drops or extremely slow connection

    Hello,
    I have an Early 2008 Macbook Pro with Mac OS X 10.5.5. By the time I was running on 10.5.2 my Wi-Fi connection used to work perfectly, but when I updated to 10.5.3 I started to have so many problems with it that I even went back to 10.5.2 for a while.
    I remember posting a thread in a forum and people answered me that it was impossible for a software update to mess up my connection. I proved it by downgrading and gaining full connectivity back. I've also found hundreds of people who have been having the exact same problem, but it appears as if Apple just doesn't care enough to give a definitive solution. Instead, I've tried tons of other so-called solutions from other people, that have not done anything good for me.
    The problem is as follows: I can perfectly connect to my home network, but after 30 seconds- 2 minutes, my signal drops to just 1 bar (from full 4 bars) and I can no longer use it. To fix it, I have to disable my Airport card and then enable it back, to get another 30 seconds - 2 minutes. If I ever get to be connected for more than 2 minutes, my connection gets reaaaally slow (as slow that it can take me more than 5 minutes to download a 100 KB file).
    Anyway, I'm 100% sure this is a SOFTWARE issue since the same computer running on Windows and resting at the exact same place doesn't have a single problem connecting. Of course, it has nothing to do with my router configuration. It is completely, entirely, 100% a problem related to Mac OS X 10.5.3 and above.
    I love my computer in many ways, but this issue has been killing me bit by bit. What does a computer without a proper Internet connection work for? Then you can remotely understand my frustration.
    Please, if you have had the same problem post it here. Apple has to do something about this, because I can't believe I bought such a useless computer!
    Thanks.

    Have tried both your suggestions ( and every other on Discussions). Here is this mornings console log:
    18/10/08 08:35:39 kernel npvhash=4095
    18/10/08 08:35:39 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    18/10/08 08:35:39 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    18/10/08 08:35:39 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    18/10/08 08:35:39 kextd[10] 410 cached, 0 uncached personalities to catalog
    18/10/08 08:35:40 kernel hi mem tramps at 0xffe00000
    18/10/08 08:35:40 kernel PAE enabled
    18/10/08 08:35:40 kernel 64 bit mode enabled
    18/10/08 08:35:40 kernel Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386
    18/10/08 08:35:40 kernel standard timeslicing quantum is 10000 us
    18/10/08 08:35:40 kernel vmpagebootstrap: 971986 free pages and 76590 wired pages
    18/10/08 08:35:40 kernel migtable_maxdispl = 79
    18/10/08 08:35:40 kernel 103 prelinked modules
    18/10/08 08:35:40 kernel AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    18/10/08 08:35:40 kernel AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    18/10/08 08:35:40 kernel Loading security extension com.apple.security.TMSafetyNet
    18/10/08 08:35:40 kernel calling mpopolicyinit for TMSafetyNet
    18/10/08 08:35:40 kernel Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    18/10/08 08:35:40 kernel Loading security extension com.apple.nke.applicationfirewall
    18/10/08 08:35:40 kernel Loading security extension com.apple.security.seatbelt
    18/10/08 08:35:40 kernel calling mpopolicyinit for mb
    18/10/08 08:35:40 kernel Seatbelt MACF policy initialized
    18/10/08 08:35:40 kernel Security policy loaded: Seatbelt Policy (mb)
    18/10/08 08:35:40 kernel Copyright (c) 1982, 1986, 1989, 1991, 1993
    18/10/08 08:35:40 kernel The Regents of the University of California. All rights reserved.
    18/10/08 08:35:40 kernel MAC Framework successfully initialized
    18/10/08 08:35:40 kernel using 16384 buffer headers and 4096 cluster IO buffer headers
    18/10/08 08:35:40 kernel devfsmakenode: not ready for devices!
    18/10/08 08:35:40 kernel IOAPIC: Version 0x20 Vectors 64:87
    18/10/08 08:35:40 kernel ACPI: System State [S0 S3 S4 S5] (S3)
    18/10/08 08:35:40 kernel mbinit: done
    18/10/08 08:35:40 kernel Security auditing service present
    18/10/08 08:35:40 kernel BSM auditing present
    18/10/08 08:35:40 kernel rooting via boot-uuid from /chosen: 48F00388-CFD8-34DC-9609-8FD91E222144
    18/10/08 08:35:40 kernel Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    18/10/08 08:35:40 kernel BTCOEXIST on
    18/10/08 08:35:40 kernel wl0: Broadcom BCM4328 802.11 Wireless Controller
    18/10/08 08:35:40 kernel 4.170.46.11FireWire (OHCI) TI ID 8025 built-in now active, GUID 0021e9fffece8496; max speed s800.
    18/10/08 08:35:40 kernel Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS542525K9SA00 Media/IOGUIDPartitionScheme/Customer@2
    18/10/08 08:35:40 kernel BSD root: disk0s2, major 14, minor 2
    18/10/08 08:35:40 kernel Jettisoning kernel linker.
    18/10/08 08:35:40 kernel Resetting IOCatalogue.
    18/10/08 08:35:40 kernel GFX0: family specific matching fails
    18/10/08 08:35:40 kernel Matching service count = 1
    18/10/08 08:35:40 kernel Matching service count = 17
    18/10/08 08:35:40 kernel Matching service count = 17
    18/10/08 08:35:40 kernel Matching service count = 17
    18/10/08 08:35:40 kernel Matching service count = 17
    18/10/08 08:35:40 kernel Matching service count = 17
    18/10/08 08:35:40 kernel Previous Shutdown Cause: 5
    18/10/08 08:35:40 kernel NVDANV50HAL loaded and registered.
    18/10/08 08:35:40 kernel GFX0: family specific matching fails
    18/10/08 08:35:41 kernel AppleIntelCPUPowerManagement: initialization complete
    18/10/08 08:35:42 kernel AppleUSBMultitouchDriver: starting
    18/10/08 08:35:44 bootlog[36] BOOT_TIME: 1224282936 0
    18/10/08 08:35:44 rpc.statd[18] statd.notify - no notifications needed
    18/10/08 08:35:44 fseventsd[27] bumping event counter to: 0xd45764b (current 0x0) from log file '000000000d450f0e'
    18/10/08 08:35:46 DirectoryService[32] Launched version 5.5 (v514.23)
    18/10/08 08:35:46 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[23] Login Window Application Started
    18/10/08 08:35:46 kernel yukon: Ethernet address 00:22:41:21:7e:16
    18/10/08 08:35:46 kernel AirPort_Brcm43xx: Ethernet address 00:21:e9:e2:41:e5
    18/10/08 08:35:47 com.apple.SecurityServer[19] Entering service
    18/10/08 08:35:47 /usr/sbin/ocspd[52] starting
    18/10/08 08:35:47 kernel E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    18/10/08 08:35:47 mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[22] starting
    18/10/08 08:35:49 kernel AirPort: Link Down on en1
    18/10/08 08:35:52 kernel AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    18/10/08 08:35:52 kernel AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    18/10/08 08:35:52 kernel WLCE_COUNTRY_CODECHANGED
    18/10/08 08:35:52 kernel en1: 802.11d country code set to 'AU'.
    18/10/08 08:35:52 kernel en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 5 6 7 8 9 10 11 12 13 1 2 3 4 5 6 7 8 9 36 40 44 48 52 56 60 64 149 153 157 161 165 40 48 56 64 153 161 36 44 52 60 149 157
    18/10/08 08:35:53 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:35:53 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:35:54 kernel AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    18/10/08 08:35:54 mDNSResponder[22] Adding registration domain kevinvh.members.mac.com.
    18/10/08 08:35:54 kernel MAC AUTH succeeded
    18/10/08 08:35:54 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:35:54 kernel AirPort: Link Up on en1
    18/10/08 08:35:54 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:35:55 kextd[10] writing kernel link data to /var/run/mach.sym
    18/10/08 08:35:56 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:35:56 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:35:57 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:35:57 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:35:58 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:35:58 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:36:00 kernel IOHIDSystem: Seize of AppleHIDKeyboardEventDriver failed.
    18/10/08 08:36:00 Parallels[77] Loading Hypervisor module...
    18/10/08 08:36:00 com.apple.SystemStarter[16] kextload: extension /System/Library/Extensions/hypervisor.kext is already loaded
    18/10/08 08:36:00 kernel [Parallels] Parallels Hypervisor started.
    18/10/08 08:36:00 loginwindow[23] Login Window Started Security Agent
    18/10/08 08:36:00 Parallels[82] Loading Monitor module...
    18/10/08 08:36:00 com.apple.SystemStarter[16] kextload: extension /System/Library/Extensions/vmmain.kext is already loaded
    18/10/08 08:36:00 kernel [Parallels] Parallels VM observer thread started
    18/10/08 08:36:00 Parallels[86] Loading ConnectUSB module...
    18/10/08 08:36:00 com.apple.SystemStarter[16] kextload: extension /System/Library/Extensions/ConnectUSB.kext is already loaded
    18/10/08 08:36:00 Parallels[88] Loading Network module...
    18/10/08 08:36:00 SecurityAgent[85] User info context values set for kevinvh
    18/10/08 08:36:00 com.apple.SystemStarter[16] kextload: extension /System/Library/Extensions/Pvsnet.kext is already loaded
    18/10/08 08:36:00 Parallels[90] Loading Virtual Ethernet module...
    18/10/08 08:36:00 com.apple.SystemStarter[16] kextload: /Library/StartupItems/Parallels/Pvsvnic.kext loaded successfully
    18/10/08 08:36:00 kernel comparallels_kextPvsvnic1: Ethernet address 00:1c:42:00:00:01
    18/10/08 08:36:00 SecurityAgent[85] Login Window done
    18/10/08 08:36:00 loginwindow[23] Login Window - Returned from Security Agent
    18/10/08 08:36:00 loginwindow[23] USER_PROCESS: 23 console
    18/10/08 08:36:00 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[71]) Exited: Terminated
    18/10/08 08:36:00 kernel comparallels_kextPvsvnic0: Ethernet address 00:1c:42:00:00:00
    18/10/08 08:36:01 /System/Library/CoreServices/coreservicesd[44] SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Kevin Hiscox's Public Folder) returned -14135
    18/10/08 08:36:01 Parallels[107] Staring DHCP/NAT daemon...
    18/10/08 08:36:01 pvsnatd[109] en3: DHCP/NAT for 10.211.55.2-10.211.55.254 netmask 255.255.255.0
    18/10/08 08:36:01 pvsnatd[109] en2: DHCP for 10.37.129.2-10.37.129.254 netmask 255.255.255.0
    18/10/08 08:36:01 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:36:01 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:36:02 Parallels[120] Initialization complete.
    18/10/08 08:36:04 mDNSResponder[22] Failed to obtain NAT port mapping 00048CF8 from router 192.168.1.1 external address 0.0.0.0 internal port 5353 error 0
    18/10/08 08:36:04 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:36:04 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:36:07 mDNSResponder[22] Failed to obtain NAT port mapping 00048CF8 from router 192.168.1.1 external address 58.173.155.251 internal port 5353 error 0
    18/10/08 08:37:44 kernel AirPort: Link Down on en1
    18/10/08 08:37:47 kernel MAC AUTH succeeded
    18/10/08 08:37:47 kernel AirPort: Link Up on en1
    18/10/08 08:38:09 SyncServer[133] SyncServer: Truth vacuumed. Next vacuum date 2008-11-01 08:38:08 +1000
    18/10/08 08:38:43 kernel AirPort: Link Down on en1
    18/10/08 08:38:43 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:38:43 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:38:46 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:38:46 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:38:47 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:38:47 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:38:48 kernel MAC AUTH succeeded
    18/10/08 08:38:48 kernel AirPort: Link Up on en1
    18/10/08 08:38:48 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:38:48 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:38:50 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:38:50 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:38:51 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:38:51 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:38:51 mDNSResponder[22] Note: Frequent transitions for interface en1 (192.168.1.199); network traffic reduction measures in effect
    18/10/08 08:39:30 kernel AirPort: Link Down on en1
    18/10/08 08:39:30 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:39:30 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:39:30 mDNSResponder[22] Note: Frequent transitions for interface en1 (FE80:0000:0000:0000:0221:E9FF:FEE2:41E5); network traffic reduction measures in effect
    18/10/08 08:39:30 mDNSResponder[22] Note: Frequent transitions for interface en1 (192.168.1.199); network traffic reduction measures in effect
    18/10/08 08:39:33 kernel MAC AUTH succeeded
    18/10/08 08:39:33 kernel AirPort: Link Up on en1
    18/10/08 08:39:33 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:39:33 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:39:33 mDNSResponder[22] Note: Frequent transitions for interface en1 (192.168.1.199); network traffic reduction measures in effect
    18/10/08 08:39:33 mDNSResponder[22] Note: Frequent transitions for interface en1 (FE80:0000:0000:0000:0221:E9FF:FEE2:41E5); network traffic reduction measures in effect
    18/10/08 08:39:33 mDNSResponder[22] Note: Frequent transitions for interface en1 (192.168.1.199); network traffic reduction measures in effect
    18/10/08 08:39:38 mDNSResponder[22] ERROR: socket closed prematurely tcpInfo->nread = 0
    18/10/08 08:39:38 mDNSResponder[22] ERROR: socket closed prematurely tcpInfo->nread = 0
    18/10/08 08:39:38 mDNSResponder[22] ERROR: socket closed prematurely tcpInfo->nread = 0
    18/10/08 08:41:10 kernel AirPort: Link Down on en1
    18/10/08 08:41:10 kernel WLCE_COUNTRY_CODECHANGED
    18/10/08 08:41:10 kernel en1: 802.11d country code set to 'X1'.
    18/10/08 08:41:10 kernel en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 5 6 7 8 9 10 11 12 13 1 2 3 4 5 6 7 8 9 36 40 44 48 52 56 60 64 149 153 157 161 165 40 48 56 64 153 161 36 44 52 60 149 157
    18/10/08 08:41:10 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:41:10 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:41:13 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:41:13 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:41:14 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:41:14 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:41:20 kernel WLCE_COUNTRY_CODECHANGED
    18/10/08 08:41:20 kernel en1: 802.11d country code set to 'AU'.
    18/10/08 08:41:20 kernel en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 5 6 7 8 9 10 11 12 13 1 2 3 4 5 6 7 8 9 36 40 44 48 52 56 60 64 149 153 157 161 165 40 48 56 64 153 161 36 44 52 60 149 157
    18/10/08 08:41:20 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:41:20 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:41:21 kernel MAC AUTH succeeded
    18/10/08 08:41:21 kernel AirPort: Link Up on en1
    18/10/08 08:41:21 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:41:21 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:41:22 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:41:22 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:41:24 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:41:24 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:41:24 mDNSResponder[22] Note: Frequent transitions for interface en1 (192.168.1.199); network traffic reduction measures in effect
    18/10/08 08:41:24 mDNSResponder[22] Failed to obtain NAT port mapping 00048CF8 from router 192.168.1.1 external address 58.173.155.251 internal port 5353 error 0
    18/10/08 08:42:10 kernel AirPort: Link Down on en1
    18/10/08 08:42:10 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:42:10 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:42:10 mDNSResponder[22] Note: Frequent transitions for interface en1 (FE80:0000:0000:0000:0221:E9FF:FEE2:41E5); network traffic reduction measures in effect
    18/10/08 08:42:10 mDNSResponder[22] Note: Frequent transitions for interface en1 (192.168.1.199); network traffic reduction measures in effect
    18/10/08 08:42:11 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:42:11 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:42:14 kernel MAC AUTH succeeded
    18/10/08 08:42:14 kernel AirPort: Link Up on en1
    18/10/08 08:42:14 mDNSResponder[22] Couldn't read user-specified Computer Name; using default “MacBookPro-002241217E16” instead
    18/10/08 08:42:14 mDNSResponder[22] Couldn't read user-specified local hostname; using default “MacBookPro-002241217E16.local” instead
    18/10/08 08:42:14 mDNSResponder[22] Note: Frequent transitions for interface en1 (192.168.1.199); network traffic reduction measures in effect
    18/10/08 08:42:14 mDNSResponder[22] Note: Frequent transitions for interface en1 (FE80:0000:0000:0000:0221:E9FF:FEE2:41E5); network traffic reduction measures in effect
    18/10/08 08:42:14 mDNSResponder[22] Note: Frequent transitions for interface en1 (192.168.1.199); network traffic reduction measures in effect
    18/10/08 08:42:44 /usr/sbin/ocspd[160] starting
    18/10/08 08:43:17 mDNSResponder[22] KQ SSLHandshake failed: -9844
    18/10/08 08:46:27 kernel AirPort: Link Down on en1
    18/10/08 08:46:29 kernel MAC AUTH succeeded
    18/10/08 08:46:29 kernel AirPort: Link Up on en1
    I believe the multiple error lines are caused by me clicking on the AirPort Status icon on the menu bar to check the Transmit Rate.
    Message was edited by: Kevin Hiscox

  • Mavericks can only boot in safe mode

    In can only boot my Imac 27' (end of 2009) in safe mode.
    The problem started in Lion, when the computer suddenly froze.
    I upgraded (in safe mode) to Mavericks 10.9.2, took away all Launch Agents and Daemon that are not Apple (both in System and User's), done all the permission repairs, reset memory, fsck and turn the plug off the computer. The only thing I was not able to do is the hardware test (for some reason, the command + D to access the internet testing is not working). I have no external devices or cables attached.
    My 2TB hard drive is divided in 3 partitions. I have got 2 user accounts.
    Even with all this, I can only start in safe mode.
    Here is a copy of the log. If anyone can help, I would be grateful !
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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".
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 syslogd[19]: 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.
    03.05.14 11:48:37.000 kernel[0]: Longterm timer threshold: 1000 ms
    03.05.14 11:48:37.000 kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    03.05.14 11:48:37.000 kernel[0]: vm_page_bootstrap: 2015569 free pages and 65199 wired pages
    03.05.14 11:48:37.000 kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    03.05.14 11:48:37.000 kernel[0]: zone leak detection enabled
    03.05.14 11:48:37.000 kernel[0]: "vm_compressor_mode" is 4
    03.05.14 11:48:37.000 kernel[0]: standard timeslicing quantum is 10000 us
    03.05.14 11:48:37.000 kernel[0]: standard background quantum is 2500 us
    03.05.14 11:48:37.000 kernel[0]: mig_table_max_displ = 74
    03.05.14 11:48:37.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    03.05.14 11:48:37.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    03.05.14 11:48:37.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    03.05.14 11:48:37.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    03.05.14 11:48:37.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=0 Disabled
    03.05.14 11:48:37.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=0 Disabled
    03.05.14 11:48:37.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=0 Disabled
    03.05.14 11:48:37.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=0 Disabled
    03.05.14 11:48:37.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    03.05.14 11:48:37.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    03.05.14 11:48:37.000 kernel[0]: calling mpo_policy_init for Sandbox
    03.05.14 11:48:37.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    03.05.14 11:48:37.000 kernel[0]: calling mpo_policy_init for Quarantine
    03.05.14 11:48:37.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    03.05.14 11:48:37.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    03.05.14 11:48:37.000 kernel[0]: The Regents of the University of California. All rights reserved.
    03.05.14 11:48:37.000 kernel[0]: MAC Framework successfully initialized
    03.05.14 11:48:37.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    03.05.14 11:48:37.000 kernel[0]: AppleKeyStore starting (BUILT: Jan 16 2014 20:19:00)
    03.05.14 11:48:37.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    03.05.14 11:48:37.000 kernel[0]: ACPI: sleep states S3 S4 S5
    03.05.14 11:48:37.000 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    03.05.14 11:48:37.000 kernel[0]: [ PCI configuration begin ]
    03.05.14 11:48:37.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 1144
    03.05.14 11:48:37.000 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    03.05.14 11:48:37.000 kernel[0]: console relocated to 0xf80010000
    03.05.14 11:48:37.000 kernel[0]: [ PCI configuration end, bridges 9, devices 21 ]
    03.05.14 11:48:37.000 kernel[0]: [ PCI configuration begin ]
    03.05.14 11:48:37.000 kernel[0]: [ PCI configuration end, bridges 10, devices 36 ]
    03.05.14 11:48:37.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 40d32dfffe04245e; max speed s800.
    03.05.14 11:48:37.000 kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    03.05.14 11:48:37.000 kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    03.05.14 11:48:37.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    03.05.14 11:48:37.000 kernel[0]: rooting via boot-uuid from /chosen: 48B4343E-ADD2-366E-8820-219D2141D0B7
    03.05.14 11:48:37.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>
    03.05.14 11:48:37.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    03.05.14 11:48:37.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    03.05.14 11:48:37.000 kernel[0]: handoff: unsupported os...
    03.05.14 11:48:37.000 kernel[0]: handoff: symbol mismatch...
    03.05.14 11:48:37.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    03.05.14 11:48:37.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    03.05.14 11:48:37.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    03.05.14 11:48:37.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/Hitachi HDS722020ALA330 Media/IOGUIDPartitionScheme/Macintosh HD@2
    03.05.14 11:48:37.000 kernel[0]: BSD root: disk0s2, major 1, minor 1
    03.05.14 11:48:37.000 kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    03.05.14 11:48:37.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    03.05.14 11:48:37.000 kernel[0]: ath_get_caps[4044] rx chainmask mismatch actual 3 sc_chainmak 0
    03.05.14 11:48:37.000 kernel[0]: 2.296383: ath_get_caps[4019] tx chainmask mismatch actual 3 sc_chainmak 0
    03.05.14 11:48:37.000 kernel[0]: 2.300580: Atheros: mac 128.2 phy 13.0 radio 12.0
    03.05.14 11:48:37.000 kernel[0]: 2.300590: Use hw queue 0 for WME_AC_BE traffic
    03.05.14 11:48:37.000 kernel[0]: 2.300596: Use hw queue 1 for WME_AC_BK traffic
    03.05.14 11:48:37.000 kernel[0]: 2.300603: Use hw queue 2 for WME_AC_VI traffic
    03.05.14 11:48:37.000 kernel[0]: 2.300609: Use hw queue 3 for WME_AC_VO traffic
    03.05.14 11:48:37.000 kernel[0]: 2.300615: Use hw queue 8 for CAB traffic
    03.05.14 11:48:37.000 kernel[0]: 2.300620: Use hw queue 9 for beacons
    03.05.14 11:48:37.000 kernel[0]: 2.300700: wlan_vap_create : enter. devhandle=0xd4f8c6b0, opmode=IEEE80211_M_STA, flags=0x1
    03.05.14 11:48:37.000 kernel[0]: 2.300743: wlan_vap_create : exit. devhandle=0xd4f8c6b0, opmode=IEEE80211_M_STA, flags=0x1.
    03.05.14 11:48:37.000 kernel[0]: 2.300778: ATH tunables:
    03.05.14 11:48:37.000 kernel[0]: 2.300782:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    03.05.14 11:48:37.000 kernel[0]: VM Swap Subsystem is ON
    03.05.14 11:48:37.000 kernel[0]: Waiting for DSMOS...
    03.05.14 11:48:37.000 kernel[0]: IOBluetoothUSBDFU::probe
    03.05.14 11:48:37.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8215 FirmwareVersion - 0x0207
    03.05.14 11:48:37.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xb400 ****
    03.05.14 11:48:10.829 com.apple.launchd[1]: *** launchd[1] has started up. ***
    03.05.14 11:48:10.830 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    03.05.14 11:48:37.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xb400 ****
    03.05.14 11:48:37.000 kernel[0]: init
    03.05.14 11:48:37.000 kernel[0]: probe
    03.05.14 11:48:37.000 kernel[0]: start
    03.05.14 11:48:37.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xb400
    03.05.14 11:48:37.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    03.05.14 11:48:37.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    03.05.14 11:48:37.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    03.05.14 11:48:37.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    03.05.14 11:48:37.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    03.05.14 11:48:37.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    03.05.14 11:48:37.000 kernel[0]: ** Device in slot: SLOT--1 **
    03.05.14 11:48:37.000 kernel[0]: Previous Shutdown Cause: 3
    03.05.14 11:48:37.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    03.05.14 11:48:37.000 kernel[0]: DSMOS has arrived
    03.05.14 11:48:37.609 distnoted[66]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    03.05.14 11:48:36.114 hidd[45]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    03.05.14 11:48:36.115 fseventsd[46]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (502 27 1097)
    03.05.14 11:48:36.115 fseventsd[46]: log dir: /.fseventsd getting new uuid: 4CB3C308-0B39-4855-BD13-3F533C4457B9
    03.05.14 11:48:36.117 hidd[45]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    03.05.14 11:48:36.416 com.apple.usbmuxd[17]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    03.05.14 11:48:36.633 kdc[42]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    03.05.14 11:48:37.611 com.apple.launchd[1]: (com.apple.Kerberos.kdc[42]) Exited with code: 1
    03.05.14 11:48:37.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    03.05.14 11:48:37.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    03.05.14 11:48:37.642 kdc[78]: label: default
    03.05.14 11:48:37.642 kdc[78]:     dbname: od:/Local/Default
    03.05.14 11:48:37.642 kdc[78]:     mkey_file: /var/db/krb5kdc/m-key
    03.05.14 11:48:37.642 kdc[78]:     acl_file: /var/db/krb5kdc/kadmind.acl
    03.05.14 11:48:38.242 com.apple.SecurityServer[24]: Session 100000 created
    03.05.14 11:48:38.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    03.05.14 11:48:38.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x1a40 -- 0xe000 -- 0xb400 ****
    03.05.14 11:48:39.540 configd[56]: en0: DHCP duplicate configured service
    03.05.14 11:48:42.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    03.05.14 11:48:42.130 configd[56]: en0: AUTOMATIC-V6 duplicate configured service
    03.05.14 11:48:43.069 configd[56]: dhcp_arp_router: en1 SSID unavailable
    03.05.14 11:48:43.078 configd[56]: setting hostname to "Macs-iMac-3.local"
    03.05.14 11:48:43.092 configd[56]: network changed.
    03.05.14 11:48:43.095 configd[56]: en0: DHCP duplicate configured service
    03.05.14 11:48:43.095 configd[56]: en0: AUTOMATIC-V6 duplicate configured service
    03.05.14 11:48:43.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    03.05.14 11:48:43.492 mds[34]: (Normal) FMW: FMW 0 0
    03.05.14 11:48:44.000 kernel[0]: hfs: mounted Video on device disk0s4
    03.05.14 11:48:45.000 kernel[0]: hfs: mounted Musicas on device disk0s5
    03.05.14 11:48:46.690 com.apple.SecurityServer[24]: Entering service
    03.05.14 11:48:46.783 mDNSResponder[35]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    03.05.14 11:48:46.813 digest-service[67]: label: default
    03.05.14 11:48:46.813 digest-service[67]:     dbname: od:/Local/Default
    03.05.14 11:48:46.813 digest-service[67]:     mkey_file: /var/db/krb5kdc/m-key
    03.05.14 11:48:46.814 digest-service[67]:     acl_file: /var/db/krb5kdc/kadmind.acl
    03.05.14 11:48:46.816 digest-service[67]: digest-request: uid=0
    03.05.14 11:48:46.833 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    03.05.14 11:48:46.835 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    03.05.14 11:48:46.870 digest-service[67]: digest-request: netr probe 0
    03.05.14 11:48:46.871 digest-service[67]: digest-request: init request
    03.05.14 11:48:46.879 digest-service[67]: digest-request: init return domain: BUILTIN server: MACS-IMAC-3 indomain was: <NULL>
    03.05.14 11:48:46.913 awacsd[59]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    03.05.14 11:48:46.919 awacsd[59]: InnerStore CopyAllZones: no info in Dynamic Store
    03.05.14 11:48:47.229 locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    03.05.14 11:48:47.243 locationd[40]: Location icon should now be in state 'Inactive'
    03.05.14 11:48:47.243 locationd[40]: locationd was started after an unclean shutdown
    03.05.14 11:48:47.401 airportd[63]: airportdProcessDLILEvent: en1 attached (up)
    03.05.14 11:48:47.000 kernel[0]: AtherosNewma40P2PInterface::init name <p2p0> role 1
    03.05.14 11:48:47.000 kernel[0]: AtherosNewma40P2PInterface::init() <p2p> role 1
    03.05.14 11:48:47.404 configd[56]: en0: DHCP duplicate configured service
    03.05.14 11:48:47.404 configd[56]: en0: AUTOMATIC-V6 duplicate configured service
    03.05.14 11:48:47.000 kernel[0]: 38.870836: performCountryCodeOperation: Not connected, scan in progress[0]
    03.05.14 11:48:47.000 kernel[0]: 38.871785: setWOW_PARAMETERS:wowevents = 2(1)
    03.05.14 11:48:47.470 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    03.05.14 11:48:47.532 loginwindow[38]: Login Window Application Started
    03.05.14 11:48:47.000 kernel[0]: en1: 802.11d country code set to 'US '.
    03.05.14 11:48:47.000 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    03.05.14 11:48:47.589 sandboxd[113]: ([63]) airportd(63) deny file-read-data /private/var/root/Library/Preferences/ByHost/.GlobalPreferences.506705CD-8AA9-5 340-BEA4-87BBB2A2E261.plist
    03.05.14 11:48:48.103 aosnotifyd[62]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    03.05.14 11:48:48.167 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    03.05.14 11:48:48.530 networkd[118]: networkd.118 built Aug 24 2013 22:08:46
    03.05.14 11:48:49.138 aosnotifyd[62]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    03.05.14 11:48:49.178 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    03.05.14 11:48:50.136 WindowServer[115]: Server is starting up
    03.05.14 11:48:50.229 aosnotifyd[62]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    03.05.14 11:48:50.262 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    03.05.14 11:48:50.542 systemkeychain[102]: done file: /var/run/systemkeychaincheck.done
    03.05.14 11:48:50.554 configd[56]: network changed: DNS*
    03.05.14 11:48:50.556 configd[56]: network changed: DNS*
    03.05.14 11:48:50.557 mDNSResponder[35]: D2D_IPC: Loaded
    03.05.14 11:48:50.557 mDNSResponder[35]: D2DInitialize succeeded
    03.05.14 11:48:50.561 mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    03.05.14 11:48:50.561 mDNSResponder[35]: Adding registration domain 156425616.members.btmm.icloud.com.
    03.05.14 11:48:50.568 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC9AB802360 Macs-iMac-3.local. (Addr) that's already in the list
    03.05.14 11:48:50.568 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC9AB8027F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    03.05.14 11:48:50.568 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC9AA81BD60 Macs-iMac-3.local. (AAAA) that's already in the list
    03.05.14 11:48:50.568 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC9AA81C1F0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    03.05.14 11:48:51.199 kdc[78]: KDC started
    03.05.14 11:48:51.321 aosnotifyd[62]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    03.05.14 11:48:51.362 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    03.05.14 11:48:51.520 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    03.05.14 11:48:51.571 awacsd[59]: Configuring lazy AWACS client: 156425616.p07.members.btmm.icloud.com.
    03.05.14 11:48:52.000 kernel[0]: [BNBMouseDevice::init][80.14] init is complete
    03.05.14 11:48:52.000 kernel[0]: [BNBMouseDevice::handleStart][80.14] returning 1
    03.05.14 11:48:52.000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    03.05.14 11:48:52.603 fseventsd[46]: event logs in /Volumes/Video/.fseventsd out of sync with volume.  destroying old logs. (157 8 1095)
    03.05.14 11:48:52.000 kernel[0]: [AppleMultitouchDevice::start] entered
    03.05.14 11:48:53.586 fseventsd[46]: log dir: /Volumes/Video/.fseventsd getting new uuid: DF46AA4B-9528-407F-AD85-EAC421E431C3
    03.05.14 11:48:54.638 awacsd[59]: KV HTTP 0
    03.05.14 11:48:54.655 fseventsd[46]: event logs in /Volumes/Musicas/.fseventsd out of sync with volume.  destroying old logs. (155 10 1095)
    03.05.14 11:48:55.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    03.05.14 11:48:55.424 mds[34]: (Normal) Volume: volume:0x7f8813845200 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    03.05.14 11:48:56.202 fseventsd[46]: log dir: /Volumes/Musicas/.fseventsd getting new uuid: DBDC9085-505D-4A24-8508-5C15EBF36DFA
    03.05.14 11:48:57.243 WindowServer[115]: Session 256 retained (2 references)
    03.05.14 11:48:57.243 WindowServer[115]: Session 256 released (1 references)
    03.05.14 11:48:57.280 WindowServer[115]: Session 256 retained (2 references)
    03.05.14 11:48:57.282 WindowServer[115]: init_page_flip: page flip mode is on
    03.05.14 11:48:57.000 kernel[0]: en1: BSSID changed to 10:9a:dd:82:5b:36
    03.05.14 11:48:57.000 kernel[0]: AirPort: Link Up on en1
    03.05.14 11:48:57.000 kernel[0]: 48.780691: apple80211Request[10514] Unsupported ioctl 181
    03.05.14 11:48:57.000 kernel[0]: en1: BSSID changed to 10:9a:dd:82:5b:36
    03.05.14 11:48:57.000 kernel[0]: AirPort: RSN handshake complete on en1
    03.05.14 11:48:57.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    03.05.14 11:48:57.927 fseventsd[46]: Logging disabled completely for device:1: /Volumes/Recovery HD
    03.05.14 11:48:57.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    03.05.14 11:48:58.530 WindowServer[115]: Found 39 modes for display 0x00000000 [36, 3]
    03.05.14 11:48:58.533 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    03.05.14 11:48:58.534 WindowServer[115]: mux_initialize: Couldn't find any matches
    03.05.14 11:48:58.535 WindowServer[115]: Found 39 modes for display 0x00000000 [36, 3]
    03.05.14 11:48:58.538 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    03.05.14 11:48:59.640 awacsd[59]: KV HTTP 0
    03.05.14 11:49:00.487 configd[56]: network changed: DNS* Proxy
    03.05.14 11:49:00.487 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Apple Network 825b35' making interface primary (protected network)
    03.05.14 11:49:00.488 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    03.05.14 11:49:00.489 UserEventAgent[11]: Captive: en1: Probing 'Apple Network 825b35'
    03.05.14 11:49:00.493 configd[56]: network changed: v4(en1!:10.0.1.5) DNS+ Proxy+ SMB
    03.05.14 11:49:02.569 ntpd[135]: proto: precision = 1.000 usec
    03.05.14 11:49:02.673 racoon[157]: accepted connection on vpn control socket.
    03.05.14 11:49:02.811 UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    03.05.14 11:49:03.100 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    03.05.14 11:49:04.537 apsd[61]: Unrecognized leaf certificate
    03.05.14 11:49:14.000 kernel[0]: utun_ctl_connect: creating interface utun0
    03.05.14 11:49:14.375 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[500] (Can't assign requested address).
    03.05.14 11:49:14.375 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[500]: because interface address is/was not ready (flags 2).
    03.05.14 11:49:14.375 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[4500] (Can't assign requested address).
    03.05.14 11:49:14.375 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[4500]: because interface address is/was not ready (flags 2).
    03.05.14 11:49:14.376 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[500] (Can't assign requested address).
    03.05.14 11:49:14.376 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[500]: because interface address is/was not ready (flags 2).
    03.05.14 11:49:14.377 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[4500] (Can't assign requested address).
    03.05.14 11:49:14.377 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[4500]: because interface address is/was not ready (flags 2).
    03.05.14 11:49:14.378 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[500] (Can't assign requested address).
    03.05.14 11:49:14.378 configd[56]: en0: DHCP duplicate configured service
    03.05.14 11:49:14.378 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[500]: because interface address is/was not ready (flags 2).
    03.05.14 11:49:14.378 configd[56]: en0: AUTOMATIC-V6 duplicate configured service
    03.05.14 11:49:14.378 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[4500] (Can't assign requested address).
    03.05.14 11:49:14.378 racoon[157]: failed to bind to address fd20:c40d:6b6d:9361:945f:9bfc:6bcb:cf76[4500]: because interface address is/was not ready (flags 2).
    03.05.14 11:49:14.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    03.05.14 11:49:20.396 mDNSResponder[35]: ERROR: socket closed prematurely tcpInfo->nread = 0
    03.05.14 11:49:23.596 mDNSResponder[35]: ERROR: socket closed prematurely tcpInfo->nread = 0
    03.05.14 11:50:16.742 warmd[16]: [warmctl_evt_timer_bc_activation_timeout:287] BC activation bcstop timer fired!
    03.05.14 11:50:16.743 warmd[16]: [___bootcachectl_filter_out_sharedio_from_history_block_invoke:2329] Unable to open i386 shared cache: 2 No such file or directory
    03.05.14 11:50:51.617 apsd[61]: Failed to send activation record to service com.apple.ManagedClient.enroll
    03.05.14 11:51:07.187 distnoted[172]: # distnote server agent  absolute time: 177.064182367   civil time: Sat May  3 11:51:07 2014   pid: 172 uid: 502  root: no
    03.05.14 11:51:24.977 mdworker[177]: (Warning) Import: import uti:com.adobe.pdf plugin:/Library/Spotlight/PDF.mdimporter uuid:7D48EF77-69AB-47DB-BBD9-D907F89C3C17 61 exceeded cpu use limits (12) after 12997 milliseconds sizing:0 - find suspect file using: sudo mdutil -t 842802
    03.05.14 11:51:25.032 com.apple.SecurityServer[24]: Session 100003 created
    03.05.14 11:51:25.033 com.apple.SecurityServer[24]: Session 100005 created
    03.05.14 11:51:38.595 mdworker[184]: (Warning) Import: import uti:com.adobe.pdf plugin:/Library/Spotlight/PDF.mdimporter uuid:7D48EF77-69AB-47DB-BBD9-D907F89C3C17 61 exceeded cpu use limits (12) after 12980 milliseconds sizing:0 - find suspect file using: sudo mdutil -t 842802

    I have tried a few other tricks from the experts in the discussion boards (including removing all preference files that are non apple, remove all non apple extensions), still no way to start up the computer other than safe boot.
    I would like to try and turn off bonjour, as it seems like a MDNSResponder Error. But need a green light from any of you experts.
    I am posting the latest system log (on this one, I forgot to unplug the printer)
    Please help !!!
    May  4 20:38:05 localhost bootlog[0]: BOOT_TIME 1399246685 0
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:44 localhost syslogd[19]: 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".
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:44 localhost syslogd[19]: 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.
    May  4 20:38:45 --- last message repeated 6 times ---
    May  4 20:38:44 localhost kernel[0]: Longterm timer threshold: 1000 ms
    May  4 20:38:44 localhost kernel[0]: Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    May  4 20:38:44 localhost kernel[0]: vm_page_bootstrap: 2008481 free pages and 72287 wired pages
    May  4 20:38:44 localhost kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    May  4 20:38:44 localhost kernel[0]: zone leak detection enabled
    May  4 20:38:44 localhost kernel[0]: "vm_compressor_mode" is 4
    May  4 20:38:44 localhost kernel[0]: standard timeslicing quantum is 10000 us
    May  4 20:38:44 localhost kernel[0]: standard background quantum is 2500 us
    May  4 20:38:44 localhost kernel[0]: mig_table_max_displ = 74
    May  4 20:38:44 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    May  4 20:38:44 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    May  4 20:38:44 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    May  4 20:38:44 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    May  4 20:38:44 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=0 Disabled
    May  4 20:38:44 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=0 Disabled
    May  4 20:38:44 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=0 Disabled
    May  4 20:38:44 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=0 Disabled
    May  4 20:38:44 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    May  4 20:38:44 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    May  4 20:38:44 localhost kernel[0]: calling mpo_policy_init for Sandbox
    May  4 20:38:44 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    May  4 20:38:44 localhost kernel[0]: calling mpo_policy_init for Quarantine
    May  4 20:38:44 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    May  4 20:38:44 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    May  4 20:38:44 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    May  4 20:38:44 localhost kernel[0]: MAC Framework successfully initialized
    May  4 20:38:44 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    May  4 20:38:44 localhost kernel[0]: AppleKeyStore starting (BUILT: Jan 16 2014 20:19:00)
    May  4 20:38:44 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    May  4 20:38:44 localhost kernel[0]: ACPI: sleep states S3 S4 S5
    May  4 20:38:44 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 1144
    May  4 20:38:44 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    May  4 20:38:44 localhost kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    May  4 20:38:44 localhost kernel[0]: [ PCI configuration begin ]
    May  4 20:38:44 localhost kernel[0]: console relocated to 0xf80010000
    May  4 20:38:44 localhost kernel[0]: [ PCI configuration end, bridges 9, devices 21 ]
    May  4 20:38:44 localhost kernel[0]: [ PCI configuration begin ]
    May  4 20:38:44 localhost kernel[0]: [ PCI configuration end, bridges 10, devices 36 ]
    May  4 20:38:44 localhost kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    May  4 20:38:44 localhost kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    May  4 20:38:44 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    May  4 20:38:44 localhost kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 40d32dfffe04245e; max speed s800.
    May  4 20:38:44 localhost kernel[0]: rooting via boot-uuid from /chosen: 48B4343E-ADD2-366E-8820-219D2141D0B7
    May  4 20:38:44 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>
    May  4 20:38:44 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    May  4 20:38:44 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    May  4 20:38:44 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    May  4 20:38:44 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    May  4 20:38:44 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    May  4 20:38:44 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/Hitachi HDS722020ALA330 Media/IOGUIDPartitionScheme/Macintosh HD@2
    May  4 20:38:44 localhost kernel[0]: BSD root: disk0s2, major 1, minor 2
    May  4 20:38:44 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    May  4 20:38:44 localhost kernel[0]: hfs: mounted Macintosh HD on device root_device
    May  4 20:38:44 localhost kernel[0]: USBF:    1.518    The IOUSBFamily is having trouble enumerating a USB device that has been plugged in.  It will keep retrying.  (Port 3 of Hub at 0xfd140000)
    May  4 20:38:44 localhost kernel[0]: ath_get_caps[4044] rx chainmask mismatch actual 3 sc_chainmak 0
    May  4 20:38:44 localhost kernel[0]: 2.257313: ath_get_caps[4019] tx chainmask mismatch actual 3 sc_chainmak 0
    May  4 20:38:44 localhost kernel[0]: 2.261494: Atheros: mac 128.2 phy 13.0 radio 12.0
    May  4 20:38:44 localhost kernel[0]: 2.261504: Use hw queue 0 for WME_AC_BE traffic
    May  4 20:38:44 localhost kernel[0]: 2.261510: Use hw queue 1 for WME_AC_BK traffic
    May  4 20:38:44 localhost kernel[0]: 2.261516: Use hw queue 2 for WME_AC_VI traffic
    May  4 20:38:44 localhost kernel[0]: 2.261522: Use hw queue 3 for WME_AC_VO traffic
    May  4 20:38:44 localhost kernel[0]: 2.261529: Use hw queue 8 for CAB traffic
    May  4 20:38:44 localhost kernel[0]: 2.261534: Use hw queue 9 for beacons
    May  4 20:38:44 localhost kernel[0]: 2.261612: wlan_vap_create : enter. devhandle=0xd6b8f6b0, opmode=IEEE80211_M_STA, flags=0x1
    May  4 20:38:44 localhost kernel[0]: 2.261651: wlan_vap_create : exit. devhandle=0xd6b8f6b0, opmode=IEEE80211_M_STA, flags=0x1.
    May  4 20:38:44 localhost kernel[0]: 2.261688: ATH tunables:
    May  4 20:38:44 localhost kernel[0]: 2.261691:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    May  4 20:38:44 localhost kernel[0]: USBF:    4.521    The IOUSBFamily was not able to enumerate a device.
    May  4 20:38:44 localhost kernel[0]: USBF:    5.362    The IOUSBFamily is having trouble enumerating a USB device that has been plugged in.  It will keep retrying.  (Port 3 of Hub at 0xfd140000)
    May  4 20:38:44 localhost kernel[0]: USBF:    8.760    The IOUSBFamily was not able to enumerate a device.
    May  4 20:38:44 localhost kernel[0]: USBF:    9.587    The IOUSBFamily is having trouble enumerating a USB device that has been plugged in.  It will keep retrying.  (Port 3 of Hub at 0xfd140000)
    May  4 20:38:44 localhost kernel[0]: USBF:    10.418    The IOUSBFamily gave up enumerating a USB device after 10 retries.  (Port 3 of Hub at 0xfd140000)
    May  4 20:38:44 localhost kernel[0]: USBF:    10.418    The IOUSBFamily was not able to enumerate a device.
    May  4 20:38:44 localhost kernel[0]: process taskgated[13] caught causing excessive wakeups. Observed wakeups rate (per sec): 1596; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45036
    May  4 20:38:44 localhost kernel[0]: VM Swap Subsystem is ON
    May  4 20:38:06 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    May  4 20:38:06 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    May  4 20:38:32 localhost hidd[44]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    May  4 20:38:36 localhost hidd[44]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    May  4 20:38:44 localhost com.apple.SecurityServer[25]: Session 100000 created
    May  4 20:38:45 localhost distnoted[65]: # distnote server daemon  absolute time: 28.917725827   civil time: Sun May  4 20:38:33 2014   pid: 65 uid: 0  root: yes
    May  4 20:38:46 localhost revisiond[27]: sandbox cache error 3850
    May  4 20:38:46 localhost blued[57]: sandbox cache error 11: database disk image is malformed
    May  4 20:38:46 localhost ReportCrash[71]: Invoking spindump for pid=13 wakeups_rate=1596 duration=29 because of excessive wakeups
    May  4 20:38:47 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    May  4 20:38:47 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    May  4 20:38:47 localhost spindump[73]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    May  4 20:38:47 localhost spindump[73]: Unable to register Stop Spinning port: 1011
    May  4 20:38:47 localhost kernel[0]: Waiting for DSMOS...
    May  4 20:38:48 localhost spindump[73]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    May  4 20:38:48 localhost kdc[42]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    May  4 20:38:48 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc[42]): Exited with code: 1
    May  4 20:38:49 localhost kernel[0]: IOBluetoothUSBDFU::probe
    May  4 20:38:49 localhost kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8215 FirmwareVersion - 0x0207
    May  4 20:38:49 localhost kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xec00 ****
    May  4 20:38:49 localhost kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xec00 ****
    May  4 20:38:49 localhost kernel[0]: init
    May  4 20:38:49 localhost kernel[0]: probe
    May  4 20:38:49 localhost kernel[0]: start
    May  4 20:38:49 localhost kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xec00
    May  4 20:38:49 localhost kernel[0]: [IOBluetoothHCIController][start] -- completed
    May  4 20:38:49 localhost kernel[0]: ** Device in slot: SLOT--1 **
    May  4 20:38:49 localhost kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    May  4 20:38:49 localhost kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    May  4 20:38:49 localhost kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    May  4 20:38:49 localhost kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    May  4 20:38:49 localhost kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    May  4 20:38:49 localhost kernel[0]: Previous Shutdown Cause: 3
    May  4 20:38:49 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    May  4 20:38:49 localhost kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    May  4 20:38:49 localhost kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x1240 -- 0x7800 -- 0xec00 ****
    May  4 20:38:49 localhost kernel[0]: DSMOS has arrived
    May  4 20:38:50 localhost com.apple.SecurityServer[25]: Entering service
    May  4 20:38:51 localhost kdc[79]: label: default
    May  4 20:38:51 localhost kdc[79]:     dbname: od:/Local/Default
    May  4 20:38:51 localhost kdc[79]:     mkey_file: /var/db/krb5kdc/m-key
    May  4 20:38:51 localhost kdc[79]:     acl_file: /var/db/krb5kdc/kadmind.acl
    May  4 20:38:52 localhost digest-service[66]: label: default
    May  4 20:38:52 localhost digest-service[66]:     dbname: od:/Local/Default
    May  4 20:38:52 localhost digest-service[66]:     mkey_file: /var/db/krb5kdc/m-key
    May  4 20:38:52 localhost digest-service[66]:     acl_file: /var/db/krb5kdc/kadmind.acl
    May  4 20:38:52 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    May  4 20:38:52 localhost configd[55]: dhcp_arp_router: en1 SSID unavailable
    May  4 20:38:52 localhost configd[55]: network changed.
    May  4 20:38:53 Macs-iMac-3.local configd[55]: setting hostname to "Macs-iMac-3.local"
    May  4 20:38:53 Macs-iMac-3.local digest-service[66]: digest-request: uid=0
    May  4 20:38:53 Macs-iMac-3.local com.apple.usbmuxd[17]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    May  4 20:38:53 Macs-iMac-3.local mDNSResponder[35]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    May  4 20:38:55 Macs-iMac-3 kernel[0]: hfs: mounted Video on device disk0s4
    May  4 20:38:56 Macs-iMac-3.local apsd[60]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    May  4 20:38:56 Macs-iMac-3.local aosnotifyd[61]: aosnotifyd has been launched
    May  4 20:38:57 Macs-iMac-3.local systemkeychain[94]: done file: /var/run/systemkeychaincheck.done
    May  4 20:38:57 Macs-iMac-3 kernel[0]: hfs: mounted Musicas on device disk0s5
    May  4 20:38:58 Macs-iMac-3.local configd[55]: network changed: DNS*
    May  4 20:38:58 --- last message repeated 1 time ---
    May  4 20:38:58 Macs-iMac-3.local stackshot[21]: Timed out waiting for IOKit to finish matching.
    May  4 20:38:58 Macs-iMac-3.local awacsd[58]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    May  4 20:38:59 Macs-iMac-3.local airportd[62]: airportdProcessDLILEvent: en1 attached (up)
    May  4 20:38:59 Macs-iMac-3 kernel[0]: AtherosNewma40P2PInterface::init name <p2p0> role 1
    May  4 20:38:59 Macs-iMac-3 kernel[0]: AtherosNewma40P2PInterface::init() <p2p> role 1
    May  4 20:38:59 Macs-iMac-3.local digest-service[66]: digest-request: netr probe 0
    May  4 20:38:59 Macs-iMac-3.local digest-service[66]: digest-request: init request
    May  4 20:39:00 Macs-iMac-3.local digest-service[66]: digest-request: init return domain: BUILTIN server: MACS-IMAC-3 indomain was: <NULL>
    May  4 20:39:00 Macs-iMac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    May  4 20:39:01 Macs-iMac-3.local loginwindow[38]: Login Window Application Started
    May  4 20:39:01 Macs-iMac-3.local UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    May  4 20:39:02 Macs-iMac-3.local mDNSResponder[35]: D2D_IPC: Loaded
    May  4 20:39:02 Macs-iMac-3.local mDNSResponder[35]: D2DInitialize succeeded
    May  4 20:39:02 Macs-iMac-3.local mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    May  4 20:39:02 Macs-iMac-3.local mDNSResponder[35]: Adding registration domain 156425616.members.btmm.icloud.com.
    May  4 20:39:02 Macs-iMac-3.local kdc[79]: KDC started
    May  4 20:39:02 Macs-iMac-3.local awacsd[58]: Configuring lazy AWACS client: 156425616.p07.members.btmm.icloud.com.
    May  4 20:39:03 Macs-iMac-3.local networkd[124]: networkd.124 built Aug 24 2013 22:08:46
    May  4 20:39:03 Macs-iMac-3.local awacsd[58]: KV HTTP 0
    May  4 20:39:06 Macs-iMac-3.local apsd[60]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    May  4 20:39:08 Macs-iMac-3.local mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    May  4 20:39:09 Macs-iMac-3.local awacsd[58]: KV HTTP 0
    May  4 20:39:09 Macs-iMac-3.local spindump[73]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    May  4 20:39:10 Macs-iMac-3.local sandboxd[116] ([62]): airportd(62) deny file-read-data /private/var/root/Library/Preferences/ByHost/.GlobalPreferences.506705CD-8AA9-5 340-BEA4-87BBB2A2E261.plist
    May  4 20:39:11 Macs-iMac-3 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    May  4 20:39:11 Macs-iMac-3.local blued[57]: hostControllerOnline - Number of Paired devices = 5, List of Paired devices = (
            "00-22-41-ce-73-b2",
            "7c-d1-c3-bc-ed-9b",
            "04-f1-3e-e9-76-f5",
            "d4-88-90-f0-2d-96",
            "90-27-e4-f2-fd-53"
    May  4 20:39:12 Macs-iMac-3.local blued[57]: link key found for device: 04-f1-3e-e9-76-f5
    May  4 20:39:12 Macs-iMac-3.local blued[57]: Save link key for device: 04-f1-3e-e9-76-f5
    May  4 20:39:12 Macs-iMac-3.local blued[57]: link key found for device: 7c-d1-c3-bc-ed-9b
    May  4 20:39:12 Macs-iMac-3.local blued[57]: Save link key for device: 7c-d1-c3-bc-ed-9b
    May  4 20:39:13 Macs-iMac-3 kernel[0]: [BNBMouseDevice::init][80.14] init is complete
    May  4 20:39:13 Macs-iMac-3 kernel[0]: [BNBMouseDevice::handleStart][80.14] returning 1
    May  4 20:39:13 Macs-iMac-3 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    May  4 20:39:13 Macs-iMac-3 kernel[0]: [AppleMultitouchDevice::start] entered
    May  4 20:39:14 Macs-iMac-3.local blued[57]: [setFeatureWithReportID] Could not set report
    May  4 20:39:19 Macs-iMac-3.local awacsd[58]: KV HTTP 0
    May  4 20:39:21 Macs-iMac-3 kernel[0]: 76.792776: setWOW_PARAMETERS:wowevents = 2(1)
    May  4 20:39:21 Macs-iMac-3.local WindowServer[118]: Server is starting up
    May  4 20:39:22 Macs-iMac-3 kernel[0]: 77.481213: performCountryCodeOperation: Not connected, scan in progress[0]
    May  4 20:39:22 Macs-iMac-3.local locationd[40]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    May  4 20:39:22 Macs-iMac-3.local locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    May  4 20:39:22 Macs-iMac-3 kernel[0]: en1: 802.11d country code set to 'US '.
    May  4 20:39:22 Macs-iMac-3 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    May  4 20:39:22 Macs-iMac-3.local mds[34]: (Normal) FMW: FMW 0 0
    May  4 20:39:23 Macs-iMac-3.local locationd[40]: Location icon should now be in state 'Inactive'
    May  4 20:39:24 Macs-iMac-3.local mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FE4FA01AD60 Macs-iMac-3.local. (Addr) that's already in the list
    May  4 20:39:24 Macs-iMac-3.local mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FE4FA01B1F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    May  4 20:39:24 Macs-iMac-3.local mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FE4FB801B60 Macs-iMac-3.local. (AAAA) that's already in the list
    May  4 20:39:24 Macs-iMac-3.local mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FE4FB801FF0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    May  4 20:39:27 Macs-iMac-3 kernel[0]: en1: BSSID changed to 10:9a:dd:82:5b:36
    May  4 20:39:27 Macs-iMac-3 kernel[0]: AirPort: Link Up on en1
    May  4 20:39:27 Macs-iMac-3 kernel[0]: 83.354881: apple80211Request[10514] Unsupported ioctl 181
    May  4 20:39:27 Macs-iMac-3 kernel[0]: en1: BSSID changed to 10:9a:dd:82:5b:36
    May  4 20:39:27 Macs-iMac-3 kernel[0]: AirPort: RSN handshake complete on en1
    May  4 20:39:28 Macs-iMac-3.local WindowServer[118]: Session 256 retained (2 references)
    May  4 20:39:28 Macs-iMac-3.local WindowServer[118]: Session 256 released (1 references)
    May  4 20:39:28 Macs-iMac-3.local WindowServer[118]: Session 256 retained (2 references)
    May  4 20:39:28 Macs-iMac-3.local WindowServer[118]: init_page_flip: page flip mode is on
    May  4 20:39:28 Macs-iMac-3 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    May  4 20:39:29 Macs-iMac-3.local WindowServer[118]: Found 39 modes for display 0x00000000 [36, 3]
    May  4 20:39:29 Macs-iMac-3.local WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    May  4 20:39:29 Macs-iMac-3.local WindowServer[118]: mux_initialize: Couldn't find any matches
    May  4 20:39:29 Macs-iMac-3.local WindowServer[118]: Found 39 modes for display 0x00000000 [36, 3]
    May  4 20:39:29 Macs-iMac-3.local WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    May  4 20:39:30 Macs-iMac-3.local configd[55]: network changed: DNS* Proxy
    May  4 20:39:30 Macs-iMac-3.local UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Apple Network 825b35' making interface primary (protected network)
    May  4 20:39:30 Macs-iMac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    May  4 20:39:30 Macs-iMac-3.local UserEventAgent[11]: Captive: en1: Probing 'Apple Network 825b35'
    May  4 20:39:30 Macs-iMac-3.local configd[55]: network changed: v4(en1!:10.0.1.5) DNS+ Proxy+ SMB
    May  4 20:39:31 Macs-iMac-3.local racoon[146]: accepted connection on vpn control socket.
    May  4 20:39:32 Macs-iMac-3.local ntpd[132]: proto: precision = 1.000 usec
    May  4 20:39:32 Macs-iMac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    May  4 20:39:33 Macs-iMac-3.local apsd[60]: Unrecognized leaf certificate
    May  4 20:39:35 Macs-iMac-3.local mds_stores[129]: (/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T)(Error) IndexCI in void _indexEmergencyUnmap(void *):live.1. marking invalid
    May  4 20:39:43 --- last message repeated 1 time ---
    May  4 20:39:43 Macs-iMac-3 kernel[0]: utun_ctl_connect: creating interface utun0
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[500] (Can't assign requested address).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[500]: because interface address is/was not ready (flags 2).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[4500] (Can't assign requested address).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[4500]: because interface address is/was not ready (flags 2).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[500] (Can't assign requested address).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[500]: because interface address is/was not ready (flags 2).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[4500] (Can't assign requested address).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[4500]: because interface address is/was not ready (flags 2).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[500] (Can't assign requested address).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[500]: because interface address is/was not ready (flags 2).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[4500] (Can't assign requested address).
    May  4 20:39:43 Macs-iMac-3.local racoon[146]: failed to bind to address fd20:c40d:6b6d:9361:80a:aacb:6d80:2d86[4500]: because interface address is/was not ready (flags 2).
    May  4 20:39:43 Macs-iMac-3 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    May  4 20:40:25 Macs-iMac-3.local warmd[16]: [warmctl_evt_timer_bc_activation_timeout:287] BC activation bcstop timer fired!
    May  4 20:40:25 Macs-iMac-3.local warmd[16]: [___bootcachectl_filter_out_sharedio_from_history_block_invoke:2329] Unable to open i386 shared cache: 2 No such file or directory
    May  4 20:40:31 Macs-iMac-3 kernel[0]: considerRebuildOfPrelinkedKernel com.apple.kext.OSvKernDSPLib triggered rebuild
    May  4 20:40:42 Macs-iMac-3.local com.apple.kextcache[154]: kext com.jmicron.JMicronATA  101069000 is in exception list, allowing to load
    May  4 20:40:49 Macs-iMac-3.local com.apple.kextcache[154]: kext com.ATTO.driver.ATTOExpressSASRAID  307029000 is in exception list, allowing to load
    May  4 20:40:49 Macs-iMac-3.local com.apple.kextcache[154]: kext com.ATTO.driver.ATTOExpressSASHBA3  100059000 is in exception list, allowing to load
    May  4 20:40:49 Macs-iMac-3.local com.apple.kextcache[154]: kext com.ATTO.driver.ATTOExpressSASHBA  200009000 is in exception list, allowing to load
    May  4 20:40:49 Macs-iMac-3.local com.apple.kextcache[154]: kext com.ATTO.driver.ATTOExpressPCIUl4  404029000 is in exception list, allowing to load
    May  4 20:40:49 Macs-iMac-3.local com.apple.kextcache[154]: kext com.ATTO.driver.ATTOCelerityFC  304089000 is in exception list, allowing to load
    May  4 20:40:55 Macs-iMac-3.local com.apple.kextcache[154]: kext com.Accusys.driver.Acxxx  300029000 is in exception list, allowing to load
    May  4 20:41:16 Macs-iMac-3.local com.apple.kextcache[154]: Created prelinked kernel /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache.
    May  4 20:42:17 Macs-iMac-3.local distnoted[161]: # distnote server agent  absolute time: 252.755084619   civil time: Sun May  4 20:42:17 2014   pid: 161 uid: 502  root: no
    May  4 20:42:18 Macs-iMac-3.local mdworker[157]: sandbox cache error 3850
    May  4 20:42:37 Macs-iMac-3.local distnoted[169]: # distnote server agent  absolute time: 272.385323107   civil time: Sun May  4 20:42:37 2014   pid: 169 uid: 89  root: no
    May  4 20:42:38 Macs-iMac-3.local com.apple.SecurityServer[25]: Session 100005 created
    May  4 20:42:38 Macs-iMac-3.local com.apple.SecurityServer[25]: Session 100004 created
    May  4 20:42:50 Macs-iMac-3.local mds[34]: (Normal) Volume: volume:0x7faf09848800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.vXiC4Y
    May  4 20:45:38 localhost bootlog[0]: BOOT_TIME 1399247138 0

  • System freezes at wake up & location change (AirPort to blame?)

    Hi,
    Ever since I got my new MacBook Pro last March I have had an issue where it crashes upon wake and changing locations. I never had this with my previous PowerBook. I wonder if some one has a solution for this as this is a very nasty problem... What happens is this:
    1. I close the lid at night when I am home (location is set to "Home") and the computer goes into sleep mode.
    2. The following morning I arrive in the office and open the lid, the computer wakes up and asks for my user profile after which I login.
    3. I change the location to "Office" in the Apple menu.
    4. The screen is now completely blocked, the mouse pointer no longer moves and the time colon in the menu bar stops flashing. I no longer hear any disk or fan activity.
    5. The only solution is to press the power button for several seconds to shut it down. I press the power button again after which it boots up fine.
    6. The location is still set to "Home" but now I can change the location successfully.
    Remarks:
    a. The difference between the "Home" and "Office" locations is that at home I use a WiFi connection, at work I use an Ethernet connection.
    b. When I login after sleep, it displays a window saying my WiFi connection (called "KR WiFi") can no longer be found and presents me with a list of available WiFi networks. I wonder if the cause of the issue is simply the fact that my home WiFi network can no longer be found, see next point.
    c. If I change the location to "Office" before I put it to sleep at night, I do not have the issue.
    d. This concerns a MacBook Pro, 2.5 GHz, 2 GB of memory, 17 inch with 10.5.4. I had the issue with all OS fixes (10.5.2 was the first one I believe).
    I include the console messages. It put it so sleep at 00:55:44 and woke it up again at 09:55:11. The last entry enters at 09:55:15 after which the crash occurs and I have to restart it.
    22/07/08 00:47:48 kernel AirPort: Roam (Beacons Lost)
    22/07/08 00:48:31 kernel AirPort: Roam (Beacons Lost)
    22/07/08 00:48:33 kernel AirPort: Roam (Beacons Lost)
    22/07/08 00:51:55 mDNSResponder[23] ERROR: socket closed prematurely tcpInfo->nread = 0
    22/07/08 00:55:44 kernel hibernate image path: /var/vm/sleepimage
    22/07/08 00:55:44 kernel sizeof(IOHibernateImageHeader) == 512
    22/07/08 00:55:44 kernel Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000
    22/07/08 00:55:44 kernel hibernate image major 14, minor 2, blocksize 512, pollers 4
    22/07/08 00:55:44 kernel hibernateallocpages flags 00000000, gobbling 0 pages
    22/07/08 00:55:48 kernel System SafeSleep
    22/07/08 09:55:11 kernel hibernatepage_listsetall start
    22/07/08 09:55:09 mDNSResponder[23] ERROR: mDNSPlatformTCPConnect - connect failed: socket 12: Error 50 Network is down
    22/07/08 09:55:11 kernel hibernatepage_listsetall time: 451 ms
    22/07/08 09:55:09 mDNSResponder[23] ERROR: mDNSPlatformTCPConnect - connect failed: socket 12: Error 50 Network is down
    22/07/08 09:55:11 kernel pages 483513, wire 81333, act 194682, inact 40334, zf 13194, throt 0, could discard act 68319 inact 79878 purgeable 5773
    22/07/08 09:55:09 mDNSResponder[23] ERROR: mDNSPlatformTCPConnect - connect failed: socket 12: Error 50 Network is down
    22/07/08 09:55:11 kernel hibernatepage_listsetall found pageCount 329543
    22/07/08 09:55:09 mDNSResponder[23] ERROR: mDNSPlatformTCPConnect - connect failed: socket 12: Error 50 Network is down
    22/07/08 09:55:11 kernel IOHibernatePollerOpen, mlget_interruptsenabled 0
    22/07/08 09:55:11 kernel IOHibernatePollerOpen(0)
    22/07/08 09:55:11 kernel writing 329314 pages
    22/07/08 09:55:11 kernel image1Size 177231360
    22/07/08 09:55:11 kernel all time: 14853 ms, comp time: 6415 ms, deco time: 0 ms,
    22/07/08 09:55:11 kernel image 741002752, uncompressed 1348870144 (329314), compressed 738210296 (54%), sum1 d6e5c472, sum2 199b03bc
    22/07/08 09:55:11 kernel hibernatewriteimage done(0)
    22/07/08 09:55:11 kernel sleep
    22/07/08 09:55:11 kernel System Wake
    22/07/08 09:55:11 kernel Previous Sleep Cause: 5
    22/07/08 09:55:12 mDNSResponder[23] setsockopt - IPMULTICASTIF error 192.168.1.3 -1 errno 49 (Can't assign requested address)
    22/07/08 09:55:12 mDNSResponder[23] setsockopt - IPMULTICASTIF error 192.168.1.3 -1 errno 49 (Can't assign requested address)
    22/07/08 09:55:12 mDNSResponder[23] ERROR: mDNSPlatformTCPConnect - connect failed: socket 29: Error 51 Network is unreachable
    22/07/08 09:55:13 airportd[1043] FastFinder scanning channels again
    22/07/08 09:55:13 airportd[1043] Could not find "KR WiFi"
    22/07/08 09:55:13 airportd[1043] Could not find any preferred networks; trying broadcast requests..
    22/07/08 09:55:14 kernel WLCE_COUNTRY_CODECHANGED
    22/07/08 09:55:14 airportd[1043] Broadcast requests also failed..
    22/07/08 09:55:14 kernel en1: 802.11d country code set to 'BE'.
    22/07/08 09:55:14 kernel en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 5 6 7 8 9 10 11 12 13 1 2 3 4 5 6 7 8 9 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 40 48 56 64 104 112 120 128 136 36 44 52 60 100
    22/07/08 09:55:15 airportd[1043] Probing highest ranked networks via directed scan..
    22/07/08 09:56:26 kernel npvhash=4095
    22/07/08 09:56:22 com.apple.launchctl.System[2] fsck_hfs: Volume is journaled. No checking performed.
    22/07/08 09:56:22 com.apple.launchctl.System[2] fsck_hfs: Use the -f option to force checking.
    22/07/08 09:56:25 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/chum.plist
    22/07/08 09:56:25 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    22/07/08 09:56:25 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/pilotfish.plist
    22/07/08 09:56:25 com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    22/07/08 09:56:25 com.apple.launchd[1] (com.paceap.pacesupport) Unknown key: ServiceDescription
    22/07/08 09:56:25 com.apple.launchd[1] (com.apple.distccdConfigd) Unknown key: SHAuthorizationRight
    22/07/08 09:56:25 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    22/07/08 09:56:25 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    22/07/08 09:56:26 kextd[10] 417 cached, 0 uncached personalities to catalog
    22/07/08 09:56:26 kernel hi mem tramps at 0xffe00000
    22/07/08 09:56:26 kernel PAE enabled
    22/07/08 09:56:26 kernel 64 bit mode enabled
    22/07/08 09:56:26 kernel Darwin Kernel Version 9.4.0: Mon Jun 9 19:30:53 PDT 2008; root:xnu-1228.5.20~1/RELEASE_I386
    Thanks!
    -- Kurt

    In the meantime I've been reading this topic: http://discussions.apple.com/thread.jspa?threadID=1757875&tstart=0
    It looks like a lot of people posting in that topic experience the same type of difficulties I am... And it looks like the Nvidia chipset is just very picky when it comes to RAM.
    Currently trying setting the maxmem to 3456MB in com.apple.boot.plist tip from that topic. This is not a permanent solution of course but it will at least give insight as to wether the problems lie with the RAM or something else.
    I'll keep reporting here and would still very much like to hear other thoughts on mij difficulties with the RAM.

  • Spinning ball when playing ProRes footage

    I'm having a problem editing Canon Mark 7 and Mark 5 footage transcoded to Apple ProRes 422 (HQ) progressive, 24fps.  Every time I hit play I get a spinning beach ball for 45 seconds. 
    I've searched the archives for similar problems but most seem to be years ago, suggesting either conflicts in codec on the original footage or suggesting the OS or FCP were improperly installed.  That wouldn't seem to be the case with me. 
    This is a fairly new computer (Feb. '11) and everything was installed clean - the OS, FCP, all apps, etc.   I have four 2TB internal drives (factory installed) and I use one for my system and apps, another for capture scratch, another for project files.  I'm running OSX 10.6.7, FCP 7.0.3.  I don't allow my hard drives to sleep.  I've tried all the footage on both my internal drives and an external FireWire 800 drive.  To make the problem even more confounding, I just finished an extensive project using the same codec, frame rate, everything and didn't have any problem at all. That project was running entirely off an external hard drive connected by FireWire 800. 
    Any thoughts?
    TIA,
    Peter

    I don't know if this is of any help or just a coincidence but, all these messages appeared between the time that I last hit play at 1:44 and when the spinning beach ball and "Final Cut Pro (not responding) messages cleared at 1:47
    6/19/11 1:46:07 PM          FileSyncAgent[241]          MKCOL /.FileSync/XRS-idiskng029-0 (FAILED), httpStatusCode:405, errorType:100, transactionState:5, txnId:ABBE7623-582B-4947-B633-4B85F3B4EE79, auto-retries=0, manual-retries=0
    6/19/11 1:46:07 PM          FileSyncAgent[241]          LOCK /.FileSync (FAILED), httpStatusCode:-1, errorType:100 (domain=DMGeneralErrorDomain, code=100), transactionState:5, txnId:B186DA0F-D0A7-4A78-B9D3-295CDDF50BCE, auto-retries=0, manual-retries=0
    6/19/11 1:46:16 PM          SubmitDiagInfo[5604]          Failed to write network signature cache at path /Library/Caches/com.apple.DiagnosticReporting.Networks.plist
    6/19/11 1:46:18 PM          Mail[555]          trying to delete a record we don't have 6F5535B6-5081-4A58-A6DC-2507FDF46E72
    6/19/11 1:46:22 PM          kcSync[5606]          _copyItemsToSync : SecKeychainItemCopyAttributesAndEncryptedData returned -2147413715
    6/19/11 1:46:22 PM          com.apple.syncservices.SyncServer[5601]          2011-06-19 13:46:22.801 kcSync[5606:903] _copyItemsToSync : SecKeychainItemCopyAttributesAndEncryptedData returned -2147413715
    6/19/11 1:46:23 PM          kcSync[5606]          _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:23 PM          com.apple.syncservices.SyncServer[5601]          2011-06-19 13:46:23.158 kcSync[5606:903] _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:23 PM          kcSync[5606]          _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:23 PM          com.apple.syncservices.SyncServer[5601]          2011-06-19 13:46:23.159 kcSync[5606:903] _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:23 PM          kcSync[5606]          _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:23 PM          com.apple.syncservices.SyncServer[5601]          2011-06-19 13:46:23.173 kcSync[5606:903] _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:23 PM          kcSync[5606]          _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:23 PM          com.apple.syncservices.SyncServer[5601]          2011-06-19 13:46:23.174 kcSync[5606:903] _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:23 PM          kcSync[5606]          _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:23 PM          com.apple.syncservices.SyncServer[5601]          2011-06-19 13:46:23.175 kcSync[5606:903] _createNewKeychainItemFromSyncServerWithRecord: SecKeychainItemCreateFromEncryptedContent returned -25299 with no localID
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 2CEDA08C-E84E-4703-8157-81E4269B06A2
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 6CA2B298-B343-49CD-B308-065BBDCCFE97
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have D41952C7-34DC-45D7-99F2-749D20824C70
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 74A85B6E-9B88-4B77-9D4F-F14230895A24
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 123DAB92-3BA8-439B-B0FF-5D0C6724346A
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 270064FF-6D17-4A62-A1D5-09D2E4569C8C
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 6098C14B-8C73-48A3-88BD-9C20BA700562
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have A001D771-27A8-49C3-AC75-0AC30D81345B
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have FA1C71CF-FF96-4397-9A7F-A42658F59CE3
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 50B265F9-942E-429C-80BA-409DF51C6649
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 51CFF7E8-D13B-4948-97A2-BBD4538E5F99
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 50DD0D26-0AA8-41A6-A642-F3D746477F74
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 85FF51D1-1016-45C2-9A4D-136F14779F9F
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 165F94C2-0D31-49E7-852C-AABCC938F4F5
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 0A4BBF69-DDCF-4426-9B99-E5BE71585145
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have AC3FFECA-BE72-45F0-B022-180A9E2B666D
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 1BABA9C3-3935-4534-888A-9A5D8119CE88
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 43C5A8FE-09A4-47E0-92F3-0AABDC0F784C
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 257256D9-3A3A-4011-887F-228778534AB3
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have F3E6F63F-63F5-48EB-AF8E-B779A8025495
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have DDCE90AC-4778-413C-A592-984B6A8300AE
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have A5B3BC0A-C3F1-4441-8614-1856F8854C35
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 5A7F7706-1EF9-47E3-95ED-5F622F0DCB1C
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have D6B8609A-2EE3-4A05-9028-3738DE13AAC8
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 2D751504-91D4-46A4-8B5A-16D182254B3B
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 66802045-D442-48D3-9BA0-93212F9A9AFB
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 69490818-870B-4AAF-9048-80DC9505173E
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 6CC878A0-6486-464F-8298-BAF57AF54FD8
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have CC8F09D2-7825-450F-9339-4AEFDEF37194
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 368007C2-F623-4ABA-9894-E77A7170F2F8
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have F9F250B9-B052-4FB1-BA2E-87FA23D1FB27
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 446B5365-B027-4136-ACC4-911500C9422B
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 41FCAB64-AA32-4DAA-9F02-FF32A5433C03
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have BBBEF6F1-0377-4073-8EE0-092BCA20B413
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have AB42F437-8D32-45D8-9742-2EE0DD52C8E0
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have CD153A4D-11AD-4A70-8632-0CCDD3892B3B
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 2ABB99C4-6A11-4157-BC04-3CB15ECA3210
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 52ADB084-FE75-4C30-B5ED-7807E1579341
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have F6DFF98F-32E3-4423-8F73-0CB07D1223E8
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have F79910CE-6812-4FB0-B981-2B800453AF60
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have EF0857A5-C1C1-42F9-BEA2-43B4913B240C
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 709E30D8-D574-4BB7-8694-2625D6C59B91
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 953005EF-94DB-43A5-A8BC-5E362B6FBB8A
    6/19/11 1:46:25 PM          Mail[555]          trying to delete a record we don't have 189A4ABF-2397-41C5-A429-F0D390EE9977
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 2CEDA08C-E84E-4703-8157-81E4269B06A2
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 6CA2B298-B343-49CD-B308-065BBDCCFE97
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have D41952C7-34DC-45D7-99F2-749D20824C70
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 74A85B6E-9B88-4B77-9D4F-F14230895A24
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 123DAB92-3BA8-439B-B0FF-5D0C6724346A
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 270064FF-6D17-4A62-A1D5-09D2E4569C8C
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 6098C14B-8C73-48A3-88BD-9C20BA700562
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have A001D771-27A8-49C3-AC75-0AC30D81345B
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have FA1C71CF-FF96-4397-9A7F-A42658F59CE3
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 50B265F9-942E-429C-80BA-409DF51C6649
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 51CFF7E8-D13B-4948-97A2-BBD4538E5F99
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 50DD0D26-0AA8-41A6-A642-F3D746477F74
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 85FF51D1-1016-45C2-9A4D-136F14779F9F
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 165F94C2-0D31-49E7-852C-AABCC938F4F5
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 0A4BBF69-DDCF-4426-9B99-E5BE71585145
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have AC3FFECA-BE72-45F0-B022-180A9E2B666D
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 1BABA9C3-3935-4534-888A-9A5D8119CE88
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 43C5A8FE-09A4-47E0-92F3-0AABDC0F784C
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 257256D9-3A3A-4011-887F-228778534AB3
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have F3E6F63F-63F5-48EB-AF8E-B779A8025495
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have DDCE90AC-4778-413C-A592-984B6A8300AE
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have A5B3BC0A-C3F1-4441-8614-1856F8854C35
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 5A7F7706-1EF9-47E3-95ED-5F622F0DCB1C
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have D6B8609A-2EE3-4A05-9028-3738DE13AAC8
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 2D751504-91D4-46A4-8B5A-16D182254B3B
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 66802045-D442-48D3-9BA0-93212F9A9AFB
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 69490818-870B-4AAF-9048-80DC9505173E
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 6CC878A0-6486-464F-8298-BAF57AF54FD8
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have CC8F09D2-7825-450F-9339-4AEFDEF37194
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 368007C2-F623-4ABA-9894-E77A7170F2F8
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have F9F250B9-B052-4FB1-BA2E-87FA23D1FB27
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 446B5365-B027-4136-ACC4-911500C9422B
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 41FCAB64-AA32-4DAA-9F02-FF32A5433C03
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have BBBEF6F1-0377-4073-8EE0-092BCA20B413
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have AB42F437-8D32-45D8-9742-2EE0DD52C8E0
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have CD153A4D-11AD-4A70-8632-0CCDD3892B3B
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 2ABB99C4-6A11-4157-BC04-3CB15ECA3210
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 52ADB084-FE75-4C30-B5ED-7807E1579341
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have F6DFF98F-32E3-4423-8F73-0CB07D1223E8
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have F79910CE-6812-4FB0-B981-2B800453AF60
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have EF0857A5-C1C1-42F9-BEA2-43B4913B240C
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 709E30D8-D574-4BB7-8694-2625D6C59B91
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 953005EF-94DB-43A5-A8BC-5E362B6FBB8A
    6/19/11 1:46:44 PM          Mail[555]          trying to delete a record we don't have 189A4ABF-2397-41C5-A429-F0D390EE9977
    6/19/11 1:47:04 PM          mDNSResponder[18]          ERROR: socket closed prematurely tcpInfo->nread = 0
    6/19/11 1:47:47 PM          SyncServer[5601]          [110fb0] |SyncServer|Warning| Refreshing watchdog because of a calendar time change alert.
    6/19/11 1:47:47 PM          System Preferences[5628]          Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAu dio: no matching architecture in universal wrapper
    6/19/11 1:47:47 PM          System Preferences[5628]          Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x20024aa20 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    6/19/11 1:48:05 PM          ntpd[5634]          time reset +0.441009 s

  • IMovie8 crashes every time I open it after Mavericks install

    I've booted to the restore disk partition, and verified my boot sector (OSX Root?) and the full hard drive.
    I've repaired permissions.
    I've deleted the iMovie preferences file
    Please help...
    Console Log:
    7/24/14 5:06:08.064 PM mDNSResponder[47]: ERROR: socket closed prematurely tcpInfo->nread = 0
    7/24/14 5:06:13.373 PM WindowServer[124]: disable_update_timeout: UI updates were forcibly disabled by application "iMovie" for over 1.00 seconds. Server has re-enabled them.
    7/24/14 5:06:27.372 PM WindowServer[124]: disable_update_likely_unbalanced: UI updates still disabled by application "iMovie" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    7/24/14 5:06:31.700 PM mDNSResponder[47]: ERROR: socket closed prematurely tcpInfo->nread = 0
    7/24/14 5:07:27.249 PM mDNSResponder[47]: ERROR: socket closed prematurely tcpInfo->nread = 0
    7/24/14 5:08:00.386 PM mDNSResponder[47]: ERROR: socket closed prematurely tcpInfo->nread = 0
    7/24/14 5:08:09.000 PM kernel[0]: disk1s2: I/O error.
    7/24/14 5:08:09.963 PM com.apple.launchd.peruser.501[190]: (com.apple.iMovie8.28368[397]) Job appears to have crashed: Bus error: 10
    7/24/14 5:08:10.232 PM ReportCrash[414]: Saved crash report for iMovie[397] version 8.0.6 (821) to /Users/Admin/Library/Logs/DiagnosticReports/iMovie_2014-07-24-170810_Caseys-Mac Book-Pro.crash

    Are you referring to the iLife 08 iMovie version? The next version: iMovie 9.0.9 works (I have it and use it as well as the old iMovie HD 06) - it is part of the iLife 11 disk. Depending on what you use it for (upload to the internet or burn DVD's), you may want to check out that version rather than the new iMovie 11 at the app store because it is cloud centric, but only allows for a couple of export options to get it to iDVD for burning.

  • Tomcat Server become very slow

    Hi all,
    I have a urgent problem which need you all help.... My tomcat server become very slow..i checked the CPU and memory usage are normal....and there are only about 10 users connect to server only....After i checked the log...i found that there are two error ..
    1. socket write error
    java.net.SocketException: Connection reset by peer: socket write error
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:91)
    at org.apache.coyote.http11.InternalOutputBuffer$OutputStreamOutputBuffer.doWrite(InternalOutputBuffer.java:652)
    at org.apache.coyote.http11.filters.IdentityOutputFilter.doWrite(IdentityOutputFilter.java:160)
    at org.apache.coyote.http11.InternalOutputBuffer.doWrite(InternalOutputBuffer.java:523)
    at org.apache.coyote.Response.doWrite(Response.java:513)
    at org.apache.coyote.tomcat4.OutputBuffer.realWriteBytes(OutputBuffer.java:380)
    at org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:360)
    at org.apache.coyote.tomcat4.OutputBuffer.flush(OutputBuffer.java:344)
    at org.apache.coyote.tomcat4.OutputBuffer.close(OutputBuffer.java:321)
    at org.apache.coyote.tomcat4.CoyoteWriter.close(CoyoteWriter.java:115)
    at nextapp.echoservlet.WindowUI.service(WindowUI.java:203)
    at nextapp.echoservlet.Initializer.service(Initializer.java:175)
    at nextapp.echoservlet.Connection.process(Connection.java:541)
    at nextapp.echoservlet.EchoServer.process(EchoServer.java:303)
    at nextapp.echoservlet.EchoServer.doPost(EchoServer.java:223)
    2. java.sql.SQLException: [Microsoft][ODBC SQL Server Driver][SQL Server]Transaction (Process ID 180) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.
    Which is the main causes to server slow down???.....How to solve this problem????

    The first message seems to indicate that a connection was made on the socket but closed prematurely. I get this often on my Tomcat installation when our corporate virus scanners kick in, probing network ports. I wouldn't worry about that one.
    The second one is indicating a deadlock on your database. I would say that your problem lies there.

  • TLS fails - no cipher suites in common

    When I enable TLS on the instant messaging server, I can't connect to it using TLS. I am using a self signed cert. Do I need to put the certificate authority in the JKS?
    steve
    Version
    [15 Apr 2010 13:46:00,927] INFO xmppd [main] Starting XMPP Server: Version 8.0
    Patch: 139893-02
    iim.conf
    ! tls configuration
    iim_server.sslkeystore=/etc/opt/SUNWiim/default/config/im.jks
    iim_server.keystorepasswordfile=/etc/opt/SUNWiim/default/config/sslpassword.conf
    iim_server.requiressl=false
    iim_server.trust_all_cert=true
    iim_server.certnickname=im.uwo.ca
    # keytool -list -V -keystore im.jks
    Enter keystore password: Mu51cdi3
    Keystore type: jks
    Keystore provider: SUN
    Your keystore contains 1 entry
    Alias name: im.uwo.ca
    Creation date: Apr 15, 2010
    Entry type: trustedCertEntry
    Owner: [email protected], CN=im.uwo.ca, OU=ITS, O=The University of Western Ontario, L=London, ST=Ontario, C=CA
    Issuer: [email protected], CN=UWO Certificate Authority, OU=Information Technology Services, O=The University of Western Ontario, L=London, ST=Ontario, C=CA
    Serial number: 13a
    Valid from: Thu Apr 15 09:05:42 EDT 2010 until: Fri Apr 15 09:05:42 EDT 2011
    Certificate fingerprints:
    MD5: FB:21:99:37:29:45:8C:B6:B1:55:0B:61:5B:93:28:FE
    SHA1: 4D:3B:24:72:D5:CB:2D:AA:D7:7F:6B:E6:3B:F1:DB:31:5F:64:FB:6B
    [15 Apr 2010 13:46:55,767] DEBUG xmppd [default-iim_server-worker 2] last read count 51
    [15 Apr 2010 13:46:55,770] DEBUG xmppd.xfer [default-iim_server-worker 2] [null] Received:<starttls xmlns='urn:ietf:par
    ams:xml:ns:xmpp-tls' xml:lang='en'/>
    [15 Apr 2010 13:46:55,770] DEBUG xmppd [default-iim_server-worker 2] [ClientPacketDispatcher] StartTLS Packet detected
    [15 Apr 2010 13:46:55,771] DEBUG xmppd [default-iim_server-worker 2] Session[null] Starting TLS nego : false, null
    [15 Apr 2010 13:46:55,776] DEBUG xmppd [default-iim_server-worker 2] [SecureByteChannel] TLS started for channel id : 2
    com.iplanet.im.server.io.MuxChannel@107108e
    [15 Apr 2010 13:46:55,776] DEBUG xmppd [default-iim_server-worker 2] last read count 0
    [15 Apr 2010 13:46:55,776] DEBUG xmppd [default-iim_server-worker 2] Session[null] processed input
    [15 Apr 2010 13:46:55,776] DEBUG xmppd [default-iim_server-worker 2] ConnectedStreamEndPoint finished process()
    [15 Apr 2010 13:46:55,777] DEBUG xmppd [default-iim_server-worker 2] ConnectedStreamEndPoint started process()
    [15 Apr 2010 13:46:55,777] DEBUG xmppd [default-iim_server-worker 2] ConnectedStreamEndPoint[null] processing input
    [15 Apr 2010 13:46:55,777] DEBUG xmppd [default-iim_server-worker 2] last read count 0
    [15 Apr 2010 13:46:55,777] DEBUG xmppd [default-iim_server-worker 2] Session[null] processed input
    [15 Apr 2010 13:46:55,777] DEBUG xmppd [default-iim_server-worker 2] ConnectedStreamEndPoint finished process()
    [15 Apr 2010 13:46:55,782] DEBUG xmppd [default-iim_server-worker 0] ConnectedStreamEndPoint started process()
    [15 Apr 2010 13:46:55,782] DEBUG xmppd [default-iim_server-worker 0] ConnectedStreamEndPoint[null] processing input
    [15 Apr 2010 13:46:55,782] DEBUG xmppd [default-iim_server-worker 0] last read count 90
    [15 Apr 2010 13:46:55,783] DEBUG xmppd [default-iim_server-worker 0] Session[null] processed input
    [15 Apr 2010 13:46:55,784] DEBUG xmppd [default-iim_server-worker 0] ConnectedStreamEndPoint finished process()
    [15 Apr 2010 13:46:55,784] DEBUG xmppd [default-iim_server-worker 0] ConnectedStreamEndPoint started process()
    [15 Apr 2010 13:46:55,784] DEBUG xmppd [default-iim_server-worker 0] ConnectedStreamEndPoint[null] processing input
    [15 Apr 2010 13:46:55,784] DEBUG xmppd [default-iim_server-worker 0] last read count 0
    [15 Apr 2010 13:46:55,789] DEBUG xmppd [default-iim_server-worker 2] sslEngine closed
    java.io.EOFException: sslEngine closed
    at com.iplanet.im.common.ssl.SecureServerByteChannel.handleResult(SecureServerByteChannel.java:338)
    at com.iplanet.im.common.ssl.SecureServerByteChannel.write(SecureServerByteChannel.java:244)
    at com.iplanet.im.common.ssl.SecureServerByteChannel.handleHandshakeResult(SecureServerByteChannel.java:404)
    at com.iplanet.im.common.ssl.SecureServerByteChannel.access$300(SecureServerByteChannel.java:27)
    at com.iplanet.im.common.ssl.SecureServerByteChannel$2.run(SecureServerByteChannel.java:391)
    at org.netbeans.lib.collab.util.Worker.run(Worker.java:244)
    at java.lang.Thread.run(Thread.java:619)
    [15 Apr 2010 13:46:55,792] DEBUG xmppd [default-iim_server-worker 2] [hsep]removing xmlns from packet ...
    [15 Apr 2010 13:46:55,793] DEBUG xmppd [default-iim_server-worker 0] Sending CMD_CLOSE for channel: 2
    [15 Apr 2010 13:46:55,793] INFO xmppd [default-iim_server-worker 0] MuxChannel.close() Server Closing client for chann
    el : 2,null
    [15 Apr 2010 13:46:55,794] DEBUG xmppd [default-iim_server-worker 0] Session[null] outbound status changed from opened
    to disconnected
    [15 Apr 2010 13:46:55,794] DEBUG xmppd [default-iim_server-worker 0] Session[null] inbound status changed from opened t
    o disconnected
    [15 Apr 2010 13:46:55,794] INFO xmppd [default-iim_server-worker 0] session.close() nullcloseStream false
    [15 Apr 2010 13:46:55,794] DEBUG xmppd [default-iim_server-worker 0] [CSEP]null closeImpl
    [15 Apr 2010 13:46:55,794] DEBUG xmppd [default-iim_server-worker 0] [CSEP] null closeSASLProvider
    [15 Apr 2010 13:46:55,794] DEBUG xmppd [default-iim_server-worker 0] Session[null] closed
    [15 Apr 2010 13:46:55,794] DEBUG xmppd [default-iim_server-worker 0] Removed connectionId : gz5im1.its.uwo.pri:7, this
    : jid : nullcom.iplanet.im.server.ConnectedStreamEndPoint@1198ff2 , jid : null
    [15 Apr 2010 13:46:55,794] DEBUG xmppd [default-iim_server-worker 0] Session[null] leaveAllGroupChats
    [15 Apr 2010 13:46:55,795] DEBUG xmppd [default-iim_server-worker 0] RouterEndPoint[null [18452466]] removed all listen
    ers. STAT:numEndPointListener=0
    [15 Apr 2010 13:46:55,795] DEBUG xmppd [default-iim_server-worker 0] no cipher suites in common
    org.jabberstudio.jso.StreamException: no cipher suites in common
    at net.outer_planes.jso.AbstractStream.process(AbstractStream.java:1179)
    at com.iplanet.im.server.ConnectedStreamEndPoint.process(ConnectedStreamEndPoint.java:356)
    at com.iplanet.im.server.ConnectedStreamEndPoint.dataAvailable(ConnectedStreamEndPoint.java:312)
    at com.iplanet.im.server.io.MuxChannel$MuxReadRunnable.run(MuxChannel.java:452)
    at org.netbeans.lib.collab.util.Worker.run(Worker.java:244)
    at java.lang.Thread.run(Thread.java:619)
    [15 Apr 2010 13:46:55,797] DEBUG xmppd [default-iim_server-worker 0] ConnectedStreamEndPoint finished process()

    [email protected] wrote:
    When I enable TLS on the instant messaging server, I can't connect to it using TLS.What client are you using to connect to the IM Server and what platform is it running on?
    I am using a self signed cert. Do I need to put the certificate authority in the JKS? Not as far as I can tell.
    I used the self-signed cert from Messaging Server (./msgcert generate-certDB) and the steps provided at http://forums.sun.com/thread.jspa?messageID=10971294#10971294 and TLS worked fine with the same version as you are running.
    I was testing with Pidgin 2.6.2 on Ubuntu 9.10.
    Do you see:
    [16 Apr 2010 16:13:03,421] INFO  xmppd [main] SSL initialized - using JKSThe keytool output from my test system is below:
    bash-3.00# keytool -list -V -keystore server-keystore.jks
    Enter keystore password:  password
    Keystore type: jks
    Keystore provider: SUN
    Your keystore contains 1 entry
    Alias name: server-cert
    Creation date: 16/04/2010
    Entry type: keyEntry
    Certificate chain length: 1
    Certificate[1]:
    Owner: CN=mumble.aus.sun.com
    Issuer: CN=mumble.aus.sun.com
    Serial number: 90509a40
    Valid from: Wed Mar 24 16:01:17 EST 2010 until: Thu Jun 24 15:01:17 EST 2010
    Certificate fingerprints:
             MD5:  8C:8D:67:03:2C:4C:64:B6:73:45:94:36:FA:D6:CE:4C
             SHA1: B8:3E:F3:F0:D9:0C:B9:16:2F:82:3A:22:C6:1D:62:B3:90:18:02:34
    *******************************************Regards,
    Shane.

  • Can someone help me understand console logs?

    I'm trying to figure out if my computer was used today and what was done.  Can someone tell me what the console logs mean?
    I closed my Mac at 6am and  I can figure out why it shows activity at 810 am....
    Thank you.
    2/11/13 8:10:20.008 AM SyncServer[12761]: [0x7fdf6840bdf0] |SyncServer|Warning| Refreshing watchdog because of a calendar time change alert.
    2/11/13 8:10:20.000 AM kernel[0]: Wake reason: EC.SleepTimer (SleepTimer)
    2/11/13 8:10:20.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    2/11/13 8:10:20.000 AM kernel[0]: Previous Sleep Cause: 5
    2/11/13 8:10:20.000 AM kernel[0]: en0: 802.11d country code set to 'X0'.
    2/11/13 8:10:20.000 AM kernel[0]: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    2/11/13 8:10:20.000 AM kernel[0]: TBT W (1): 0 [x]
    2/11/13 8:10:20.427 AM hidd[89]: MultitouchHID: device bootloaded
    2/11/13 8:10:20.000 AM kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    2/11/13 8:10:20.460 AM configd[17]: network changed: v4(en0-:10.0.1.3) DNS- Proxy- SMB
    2/11/13 8:10:20.587 AM awacsd[58]: InnerStore GetWakeInfoForZone: zero address for 81236581.members.btmm.icloud.com.
    2/11/13 8:10:20.596 AM awacsd[58]: KV HTTP 0
    2/11/13 8:10:20.998 AM iCalExternalSync[12903]: [0x7ff658c0e4d0] |Miscellaneous|Error| SyncServices precondition failure in [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p1283"
        sound = Basso;
        triggerduration = "-1800";
    2/11/13 8:10:20.000 AM kernel[0]: en0: 802.11d country code set to 'US'.
    2/11/13 8:10:20.000 AM kernel[0]: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    2/11/13 8:10:20.999 AM iCalExternalSync[12903]: [ICalExternalSync ]Encountered exception: [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p1283"
        sound = Basso;
        triggerduration = "-1800";
    } withStack: (
    0   iCalExternalSync                    0x00000001023fda60 iCalExternalSync + 125536
    1   iCalExternalSync                    0x00000001023ecac9 iCalExternalSync + 56009
    2   iCalExternalSync                    0x00000001023fc694 iCalExternalSync + 120468
    3   libdyld.dylib                       0x00007fff8cacd7e1 start + 0
    4   ???                                 0x0000000000000007 0x0 + 7
    2/11/13 8:10:21.000 AM iCalExternalSync[12903]: [ICalExternalSync ]NSException name:ISyncInvalidArgumentsException reason:[ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p1283"
        sound = Basso;
        triggerduration = "-1800";
    2/11/13 8:10:21.002 AM SyncServer[12761]: [0x7fdf6840bdf0] |Server|Warning| lost connection 0x7fdf692395e0 to com.apple.iCal
    2/11/13 8:10:21.417 AM com.apple.time[11]: Next maintenance wake [Backup Interval]: <date: 0x7f846c10c670> Mon Feb 11 07:03:13 2013 EST (approx)
    2/11/13 8:10:21.417 AM com.apple.time[11]: Requesting maintenance wake [Backup Interval]: <date: 0x7f846c10c670> Mon Feb 11 07:03:13 2013 EST (approx)
    2/11/13 8:10:21.000 AM kernel[0]: Graphics suppressed 1168 ms
    2/11/13 8:10:22.000 AM kernel[0]: MacAuthEvent en0   Auth result for: 10:9a:dd:81:af:c2  MAC AUTH succeeded
    2/11/13 8:10:22.000 AM kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    2/11/13 8:10:22.000 AM kernel[0]: AirPort: Link Up on en0
    2/11/13 8:10:22.000 AM kernel[0]: en0: BSSID changed to 10:9a:dd:81:af:c2
    2/11/13 8:10:22.000 AM kernel[0]: en0::IO80211Interface::postMessage bssid changed
    2/11/13 8:10:22.000 AM kernel[0]: AirPort: RSN handshake complete on en0
    2/11/13 8:10:22.975 AM configd[17]: network changed: v4(en0+:10.0.1.3) DNS+ Proxy+ SMB
    2/11/13 8:10:23.017 AM awacsd[58]: InnerStore GetWakeInfoForZone: zero address for 81236581.members.btmm.icloud.com.
    2/11/13 8:10:23.018 AM mDNSResponder[42]: Double NAT (external NAT gateway address 172.28.117.122 is also a private RFC 1918 address)
    2/11/13 8:10:23.019 AM UserEventAgent[11]: Captive: en0: Not probing 'Josh's Wi-Fi Network' (protected network)
    2/11/13 8:10:23.028 AM configd[17]: network changed: v4(en0!:10.0.1.3) DNS Proxy SMB
    2/11/13 8:10:23.374 AM airportd[12869]: _doAutoJoin: Already associated to “Josh's Wi-Fi Network”. Bailing on auto-join.
    2/11/13 8:10:23.517 AM mDNSResponder[42]: ERROR: socket closed prematurely tcpInfo->nread = 0
    2/11/13 8:10:31.000 AM kernel[0]: hibernate image path: /var/vm/sleepimage
    2/11/13 8:10:31.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    2/11/13 8:10:31.000 AM kernel[0]: sizeof(IOHibernateImageHeader) == 512
    2/11/13 8:10:31.000 AM kernel[0]: kern_open_file_for_direct_io(0) took 0 ms
    2/11/13 8:10:31.000 AM kernel[0]: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 400000 ssd 1
    2/11/13 8:10:31.000 AM kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 5
    2/11/13 8:11:01.881 AM mDNSResponder[42]: ERROR: socket closed prematurely tcpInfo->nread = 0
    2/11/13 8:11:09.299 AM iCalExternalSync[12910]: [0x7ffd33c0e4d0] |Miscellaneous|Error| SyncServices precondition failure in [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p1283"
        sound = Basso;
        triggerduration = "-1800";
    2/11/13 8:11:09.301 AM iCalExternalSync[12910]: [ICalExternalSync ]Encountered exception: [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p1283"
        sound = Basso;
        triggerduration = "-1800";
    } withStack: (
    0   iCalExternalSync                    0x000000010e03aa60 iCalExternalSync + 125536
    1   iCalExternalSync                    0x000000010e029ac9 iCalExternalSync + 56009
    2   iCalExternalSync                    0x000000010e039694 iCalExternalSync + 120468
    3   libdyld.dylib                       0x00007fff8cacd7e1 start + 0
    4   ???                                 0x0000000000000007 0x0 + 7
    2/11/13 8:11:09.301 AM iCalExternalSync[12910]: [ICalExternalSync ]NSException name:ISyncInvalidArgumentsException reason:[ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p1283"
        sound = Basso;
        triggerduration = "-1800";
    2/11/13 8:11:09.305 AM SyncServer[12761]: [0x7fdf6840bdf0] |Server|Warning| lost connection 0x7fdf6923a000 to com.apple.iCal
    2/11/13 8:11:13.230 AM Printer Pro Desktop[230]: Empty task
    2/11/13 8:11:19.000 AM kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    2/11/13 8:11:19.000 AM kernel[0]: hibernate_setup(0) took 47756 ms
    2/11/13 8:11:22.000 AM kernel[0]: en0: BSSID changed to 10:9a:dd:81:af:c2
    2/11/13 8:11:22.000 AM kernel[0]: LE is supported - Disable LE meta event
    2/11/13 8:11:22.000 AM kernel[0]: wlEvent: en0 en0 Link DOWN virtIf = 0
    2/11/13 8:11:22.000 AM kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    2/11/13 8:11:22.000 AM kernel[0]: en0::IO80211Interface::postMessage bssid changed
    2/11/13 8:11:22.000 AM kernel[0]: hibernate_page_list_setall start 0xffffff8097de9000, 0xffffff8097e09000

    OS X Mountain Lion: About Power Nap

  • Recovery points failing on 2012 R2 x64 virtual server via DPM 2012 R2 x64 - The parameter is incorrect (0x80070057)

    I'm getting this on only one of my many virtual servers for some reason.. i've dug around.. i saw there may be a "private" fix for this issue..
    The specific message is:
    The replica of Volume D:\ on server02.domain.local is inconsistent with the protected data source. All protection activities for data source will fail until the replica is synchronized with consistency check. You can recover data from existing recovery points,
    but new recovery points cannot be created until the replica is consistent. 
    For SharePoint farm, recovery points will continue getting created with the databases that are consistent. To backup inconsistent databases, run a consistency check on the farm. (ID 3106)
    An unexpected error occurred while the job was running. (ID 104 Details: The parameter is incorrect (0x80070057))
    This is not a sharepoint server..
    Any thoughts here
    EDIT:
    I am not seeing any indication of errors on the event viewer of the server being backed up..
    Tech, the Universe, Everything: http://tech-stew.com

    Hi,
    We have released the fix in UR1.
    Issues that are fixed in System Center 2012 R2 Data Protection Manager Update Rollup 1
    Issue 1
    A 0x80070057 error occurs when a session is closed prematurely. This error is caused by a failure during a consistency check.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Making test code 'Fool Proof??' using an Abort type option

    I have created 2 different tests for the Techs where I work. I have both set-up with abort buttons so if something should happen it will abort the test. but every now and then it seems as if someone will close one of the prompts for the test by clicking the 'X' in the upper right. I know I can just do away with the title bar and MAKE them press the button on the front panel to continue but I am not sure I want to do that just yet. What I am curiouos on is if the prompt vi that is running is a subvi in my main program, is there a way to pass through some sort of output if the vi is closed by that 'X'? this way I could put the program into an idle state. allowing the user to select a new task in the program without having to close it and restart.
    This program was made about a yer agao and since then I have learned more with LabVIEW and will be working on cleaning my code and improving it as there are some things I should address, but making it fool proof is at the top of my list.
    I am hoping there is a way to allow the subvi to pass a boolean or something to know that the prompt window was closed prematurely and to go into an idle state. if not I will remove the title bar to fix that problem.
    Jeff D.
    OS: Win 7 Ultimate
    LabVIEW Version: 2011,2010,2009 installed
    Certified LabVIEW Architect

    Hi Dennis - the "discard?"  option is a nice feature - never noticed it - thanks for the pointer.
    When they give imbeciles handicap-parking, I won't have so far to walk!

  • "Backup Disk Full" error with over 100 GBs free on disk!

    The subject line pretty much says it all. Any idea why TimeMachine thinks my disk is full? I have 3 drives: internal has 60 GB available, LaCie 500 GB has 145 GB available and 1 TB drive has 101 GB available. The TB drive is set for the TM backups. What gives? Any ideas?

    Pondini wrote:
    This is actually most of a normal, though lengthy, log. The end seems cut off, though.
    Hmmm. The above prompted me to go back and check the log again, at which point I realized that I'd forgotten to take off the "backup" filter I'd used to find the TM part. Sorry!! I do things in too much a hurry sometimes (often, actually). Here's the log again, starting from the exact same spot but ending 10 minutes later. This time it's EVERYTHING - NO filter set:
    Jan 7 00:12:56 MacBookPro /System/Library/CoreServices/backupd[398]: Starting standard backup
    Jan 7 00:12:57 MacBookPro /System/Library/CoreServices/backupd[398]: Backing up to: /Volumes/Terabyte/Backups.backupdb
    Jan 7 00:13:15 MacBookPro /System/Library/CoreServices/backupd[398]: Event store UUIDs don't match for volume: LaCie 450 GIG
    Jan 7 00:13:26 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ adisk.tcp.savladai.members.mac.com.
    Jan 7 00:14:09 MacBookPro SyncServer[404]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 00:14:07 -0800
    Jan 7 00:14:12 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[402]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:14:13 MacBookPro /usr/sbin/ocspd[406]: starting
    Jan 7 00:14:44 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[402]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:14:48 MacBookPro /System/Library/CoreServices/backupd[398]: Node requires deep traversal:/Volumes/LaCie 450 GIG reason:kFSEDBEventFlagMustScanSubDirs|
    Jan 7 00:15:14 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[402]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:15:15 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[408]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:16:12 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[408]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:16:33 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[413]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:16:33 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 00:16:38 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[413]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:18:20 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ dm-notification.udp.savladai.members.mac.com.
    Jan 7 00:23:33 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): AutoTunnel-02-22-41-FF-FE-32-53-3D.savladai.members.mac.com.
    Jan 7 00:23:33 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record AutoTunnel-02-22-41-FF-FE-32-53-3D.savladai.members.mac.com. type 1 failed with error -65537
    Jan 7 00:23:38 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.FA000182934414.tcp.savladai.members.mac.com.
    Jan 7 00:23:38 MacBookPro mDNSResponder[16]: Error -65537 for registration of service Helen's\032MacBook\032Pro.FA000182934414.tcp.savladai.members.mac.com.
    Jan 7 00:25:35 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): autotunnel.udp.MacBookPro.savladai.members.mac.com.
    Jan 7 00:25:35 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record autotunnel.udp.MacBookPro.savladai.members.mac.com. type 33 failed with error -65537
    Jan 7 00:25:37 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com.
    Jan 7 00:25:37 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 00:26:28 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 00:26:28 MacBookPro mDNSResponder[16]: Error -65537 for registration of service Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 00:27:43 MacBookPro mDNSResponder[16]: ERROR: socket closed prematurely tcpInfo->nread = 0
    Jan 7 00:28:33 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): _kerberos.MacBookPro.savladai.members.mac.com.
    Jan 7 00:28:33 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record _kerberos.MacBookPro.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 00:29:09 MacBookPro SyncServer[422]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 00:29:08 -0800
    Jan 7 00:29:33 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[421]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:29:33 MacBookPro /usr/sbin/ocspd[423]: starting
    Jan 7 00:31:38 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[427]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:32:02 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[429]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:32:32: --- last message repeated 1 time ---
    Jan 7 00:32:50 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[427]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:32:56 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ rfb.tcp.savladai.members.mac.com.
    Jan 7 00:33:23 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ adisk.tcp.savladai.members.mac.com.
    Jan 7 00:37:35 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 00:39:16 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ dm-notification.udp.savladai.members.mac.com.
    Jan 7 00:44:10 MacBookPro SyncServer[445]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 00:44:08 -0800
    Jan 7 00:44:16 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[444]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:44:17 MacBookPro /usr/sbin/ocspd[447]: starting
    Jan 7 00:46:13 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[449]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:46:40 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[453]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:47:10: --- last message repeated 1 time ---
    Jan 7 00:53:31 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ rfb.tcp.savladai.members.mac.com.
    Jan 7 00:53:40 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): AutoTunnel-02-22-41-FF-FE-32-53-3D.savladai.members.mac.com.
    Jan 7 00:53:40 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record AutoTunnel-02-22-41-FF-FE-32-53-3D.savladai.members.mac.com. type 1 failed with error -65537
    Jan 7 00:53:45 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.FA000182934414.tcp.savladai.members.mac.com.
    Jan 7 00:53:45 MacBookPro mDNSResponder[16]: Error -65537 for registration of service Helen's\032MacBook\032Pro.FA000182934414.tcp.savladai.members.mac.com.
    Jan 7 00:54:31 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ adisk.tcp.savladai.members.mac.com.
    Jan 7 00:55:42 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): autotunnel.udp.MacBookPro.savladai.members.mac.com.
    Jan 7 00:55:42 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record autotunnel.udp.MacBookPro.savladai.members.mac.com. type 33 failed with error -65537
    Jan 7 00:55:43 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com.
    Jan 7 00:55:44 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 00:56:35 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 00:56:35 MacBookPro mDNSResponder[16]: Error -65537 for registration of service Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 00:57:33 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 00:57:50 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): MacBookPro.savladai.members.mac.com.
    Jan 7 00:57:50 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record MacBookPro.savladai.members.mac.com. type 28 failed with error -65537
    Jan 7 00:58:40 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): _kerberos.MacBookPro.savladai.members.mac.com.
    Jan 7 00:58:40 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record _kerberos.MacBookPro.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 00:59:10 MacBookPro SyncServer[463]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 00:59:08 -0800
    Jan 7 00:59:14 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[462]: Warning: accessing obsolete X509Anchors.
    Jan 7 00:59:14 MacBookPro /usr/sbin/ocspd[464]: starting
    Jan 7 00:59:26 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ dm-notification.udp.savladai.members.mac.com.
    Jan 7 00:59:40 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[462]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:01:15 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[470]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:01:45 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[472]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:02:15: --- last message repeated 1 time ---
    Jan 7 01:02:50 MacBookPro /System/Library/CoreServices/backupd[398]: Starting pre-backup thinning: 480.33 GB requested (including padding), 360.06 GB available
    Jan 7 01:04:55 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-08-005207: 360.09 GB now available
    Jan 7 01:07:07 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-07-005159: 360.11 GB now available
    Jan 7 01:09:28 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-06-005204: 360.15 GB now available
    Jan 7 01:11:54 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-05-005144: 360.17 GB now available
    Jan 7 01:14:07 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-04-005150: 360.34 GB now available
    Jan 7 01:14:09 MacBookPro SyncServer[483]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 01:14:08 -0800
    Jan 7 01:14:14 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[482]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:14:15 MacBookPro /usr/sbin/ocspd[485]: starting
    Jan 7 01:14:30 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ rfb.tcp.savladai.members.mac.com.
    Jan 7 01:14:36 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ adisk.tcp.savladai.members.mac.com.
    Jan 7 01:15:31 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[488]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:16:20 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[488]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:16:32 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-03-005148: 360.35 GB now available
    Jan 7 01:16:38 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[493]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:16:46: --- last message repeated 1 time ---
    Jan 7 01:16:46 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-231929: 360.35 GB now available
    Jan 7 01:16:48 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-221940: 360.36 GB now available
    Jan 7 01:17:05 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-211945: 360.36 GB now available
    Jan 7 01:17:10 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-202023: 360.38 GB now available
    Jan 7 01:17:22 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-192017: 360.39 GB now available
    Jan 7 01:17:27 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-181936: 360.39 GB now available
    Jan 7 01:17:34 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 01:17:47 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-172011: 360.40 GB now available
    Jan 7 01:17:58 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-162012: 360.41 GB now available
    Jan 7 01:18:13 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-152121: 360.48 GB now available
    Jan 7 01:18:26 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-142001: 360.49 GB now available
    Jan 7 01:18:33 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-131945: 360.50 GB now available
    Jan 7 01:18:36 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-121928: 360.50 GB now available
    Jan 7 01:18:42 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-111935: 360.51 GB now available
    Jan 7 01:18:48 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-102000: 360.52 GB now available
    Jan 7 01:18:58 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-091944: 360.52 GB now available
    Jan 7 01:19:09 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-081945: 360.53 GB now available
    Jan 7 01:19:14 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-071929: 360.53 GB now available
    Jan 7 01:19:17 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-061935: 360.53 GB now available
    Jan 7 01:19:19 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ dm-notification.udp.savladai.members.mac.com.
    Jan 7 01:19:21 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-051931: 360.53 GB now available
    Jan 7 01:19:25 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-041930: 360.54 GB now available
    Jan 7 01:19:28 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-031927: 360.54 GB now available
    Jan 7 01:19:31 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-30-021933: 360.54 GB now available
    Jan 7 01:19:33 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-31-011933: 360.54 GB now available
    Jan 7 01:19:33 MacBookPro /System/Library/CoreServices/backupd[398]: Removed all 29 expired backups, more space is needed - deleting oldest backups to make room
    Jan 7 01:22:07 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-11-09-061842: 362.39 GB now available
    Jan 7 01:23:48 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): AutoTunnel-02-22-41-FF-FE-32-53-3D.savladai.members.mac.com.
    Jan 7 01:23:48 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record AutoTunnel-02-22-41-FF-FE-32-53-3D.savladai.members.mac.com. type 1 failed with error -65537
    Jan 7 01:23:54 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.FA000182934414.tcp.savladai.members.mac.com.
    Jan 7 01:23:54 MacBookPro mDNSResponder[16]: Error -65537 for registration of service Helen's\032MacBook\032Pro.FA000182934414.tcp.savladai.members.mac.com.
    Jan 7 01:24:58 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-11-16-002933: 363.80 GB now available
    Jan 7 01:25:50 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): autotunnel.udp.MacBookPro.savladai.members.mac.com.
    Jan 7 01:25:50 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record autotunnel.udp.MacBookPro.savladai.members.mac.com. type 33 failed with error -65537
    Jan 7 01:25:51 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com.
    Jan 7 01:25:51 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 01:26:42 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 01:26:42 MacBookPro mDNSResponder[16]: Error -65537 for registration of service Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 01:27:47 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-11-23-005150: 364.45 GB now available
    Jan 7 01:27:58 MacBookPro mDNSResponder[16]: ERROR: socket closed prematurely tcpInfo->nread = 0
    Jan 7 01:28:48 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): _kerberos.MacBookPro.savladai.members.mac.com.
    Jan 7 01:28:48 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record _kerberos.MacBookPro.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 01:29:10 MacBookPro SyncServer[502]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 01:29:09 -0800
    Jan 7 01:29:14 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[501]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:29:14 MacBookPro /usr/sbin/ocspd[503]: starting
    Jan 7 01:30:13 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-11-30-005141: 364.73 GB now available
    Jan 7 01:31:02 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[507]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:31:27 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[509]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:31:57: --- last message repeated 1 time ---
    Jan 7 01:33:21 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-02-005154: 365.43 GB now available
    Jan 7 01:35:04 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ adisk.tcp.savladai.members.mac.com.
    Jan 7 01:35:10 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ rfb.tcp.savladai.members.mac.com.
    Jan 7 01:36:09 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-09-005151: 365.53 GB now available
    Jan 7 01:37:26 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 01:39:00 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-10-005206: 365.78 GB now available
    Jan 7 01:40:16 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ dm-notification.udp.savladai.members.mac.com.
    Jan 7 01:41:03 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-12-152048: 365.86 GB now available
    Jan 7 01:43:26 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-13-003945: 365.95 GB now available
    Jan 7 01:44:10 MacBookPro SyncServer[524]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 01:44:08 -0800
    Jan 7 01:44:13 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[522]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:44:14 MacBookPro /usr/sbin/ocspd[525]: starting
    Jan 7 01:44:42 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[522]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:46:12 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[527]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:46:38 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-14-004012: 366.25 GB now available
    Jan 7 01:46:46 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[531]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:47:16: --- last message repeated 1 time ---
    Jan 7 01:47:35 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[527]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:50:12 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-15-002629: 368.09 GB now available
    Jan 7 01:50:23 MacBookPro mDNSResponder[16]: ERROR: socket closed prematurely tcpInfo->nread = 0
    Jan 7 01:52:39 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-16-002306: 368.44 GB now available
    Jan 7 01:53:54 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): AutoTunnel-02-22-41-FF-FE-32-53-3D.savladai.members.mac.com.
    Jan 7 01:53:54 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record AutoTunnel-02-22-41-FF-FE-32-53-3D.savladai.members.mac.com. type 1 failed with error -65537
    Jan 7 01:54:01 MacBookPro mDNSResponder[16]: ERROR: socket closed prematurely tcpInfo->nread = 0
    Jan 7 01:54:48 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ adisk.tcp.savladai.members.mac.com.
    Jan 7 01:55:37 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ rfb.tcp.savladai.members.mac.com.
    Jan 7 01:55:58 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): autotunnel.udp.MacBookPro.savladai.members.mac.com.
    Jan 7 01:55:58 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record autotunnel.udp.MacBookPro.savladai.members.mac.com. type 33 failed with error -65537
    Jan 7 01:55:59 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com.
    Jan 7 01:55:59 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 01:56:06 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-17-002303: 368.83 GB now available
    Jan 7 01:56:48 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 01:56:48 MacBookPro mDNSResponder[16]: Error -65537 for registration of service Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 01:57:27 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 01:58:07 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): MacBookPro.savladai.members.mac.com.
    Jan 7 01:58:07 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record MacBookPro.savladai.members.mac.com. type 28 failed with error -65537
    Jan 7 01:58:19 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-18-002312: 368.18 GB now available
    Jan 7 01:58:56 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): _kerberos.MacBookPro.savladai.members.mac.com.
    Jan 7 01:58:56 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record _kerberos.MacBookPro.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 01:59:11 MacBookPro SyncServer[541]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 01:59:09 -0800
    Jan 7 01:59:17 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[540]: Warning: accessing obsolete X509Anchors.
    Jan 7 01:59:17 MacBookPro /usr/sbin/ocspd[542]: starting
    Jan 7 02:00:16 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ dm-notification.udp.savladai.members.mac.com.
    Jan 7 02:01:17 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[548]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:01:18 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-19-002312: 373.02 GB now available
    Jan 7 02:01:45 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[550]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:02:15: --- last message repeated 1 time ---
    Jan 7 02:02:24 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-20-002320: 373.15 GB now available
    Jan 7 02:02:52 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-21-002305: 373.19 GB now available
    Jan 7 02:03:37 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-22-003319: 373.61 GB now available
    Jan 7 02:04:12 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-23-003313: 374.12 GB now available
    Jan 7 02:14:09 MacBookPro SyncServer[561]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 02:14:08 -0800
    Jan 7 02:14:12 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[560]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:14:12 MacBookPro /usr/sbin/ocspd[563]: starting
    Jan 7 02:15:15 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ adisk.tcp.savladai.members.mac.com.
    Jan 7 02:16:00 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[567]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:16:17 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[571]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:16:30: --- last message repeated 1 time ---
    Jan 7 02:16:30 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ rfb.tcp.savladai.members.mac.com.
    Jan 7 02:18:15 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 02:18:40 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-24-003709: 441.08 GB now available
    Jan 7 02:21:28 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ dm-notification.udp.savladai.members.mac.com.
    Jan 7 02:24:01 MacBookPro mDNSResponder[16]: ERROR: socket closed prematurely tcpInfo->nread = 0
    Jan 7 02:24:10 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.FA000182934414.tcp.savladai.members.mac.com.
    Jan 7 02:24:10 MacBookPro mDNSResponder[16]: Error -65537 for registration of service Helen's\032MacBook\032Pro.FA000182934414.tcp.savladai.members.mac.com.
    Jan 7 02:26:06 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): autotunnel.udp.MacBookPro.savladai.members.mac.com.
    Jan 7 02:26:06 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record autotunnel.udp.MacBookPro.savladai.members.mac.com. type 33 failed with error -65537
    Jan 7 02:26:06 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com.
    Jan 7 02:26:06 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record Helen's\032MacBook\032Pro.device-info.tcp.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 02:26:57 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 02:26:57 MacBookPro mDNSResponder[16]: Error -65537 for registration of service Helen's\032MacBook\032Pro.afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 02:28:15 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): MacBookPro.savladai.members.mac.com.
    Jan 7 02:28:15 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record MacBookPro.savladai.members.mac.com. type 28 failed with error -65537
    Jan 7 02:29:03 MacBookPro mDNSResponder[16]: Permission denied (NOAUTH): _kerberos.MacBookPro.savladai.members.mac.com.
    Jan 7 02:29:03 MacBookPro mDNSResponder[16]: hndlRecordUpdateReply: Registration of record _kerberos.MacBookPro.savladai.members.mac.com. type 16 failed with error -65537
    Jan 7 02:29:09 MacBookPro SyncServer[581]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 02:29:08 -0800
    Jan 7 02:29:15 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[580]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:29:15 MacBookPro /usr/sbin/ocspd[582]: starting
    Jan 7 02:30:37 MacBookPro /System/Library/CoreServices/backupd[398]: Deleted backup /Volumes/Terabyte/Backups.backupdb/Helen's MacBook Pro/2008-12-25-050131: 509.14 GB now available
    Jan 7 02:30:37 MacBookPro /System/Library/CoreServices/backupd[398]: Pre-backup thinning completed successfully: 50 backups were deleted
    Jan 7 02:30:37 MacBookPro /System/Library/CoreServices/backupd[398]: Backup date range was shortened: oldest backup is now Dec 26, 2008
    Jan 7 02:31:05 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[592]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:31:32 MacBookPro /System/Library/Frameworks/SecurityFoundation.framework/Resources/dotmacfx.app/ Contents/MacOS/dotmacfx[594]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:32:02: --- last message repeated 1 time ---
    Jan 7 02:36:25 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ adisk.tcp.savladai.members.mac.com.
    Jan 7 02:36:44 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ rfb.tcp.savladai.members.mac.com.
    Jan 7 02:38:35 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ afpovertcp.tcp.savladai.members.mac.com.
    Jan 7 02:42:19 MacBookPro mDNSResponder[16]: sendChallengeResponse: 3 failed attempts for LLQ dm-notification.udp.savladai.members.mac.com.
    Jan 7 02:43:03 MacBookPro /System/Library/CoreServices/backupd[398]: Copied 30805 files (8.1 GB) from volume MacBookPro.
    Jan 7 02:44:10 MacBookPro SyncServer[621]: SyncServer: Truth vacuumed. Next vacuum date 2009-01-21 02:44:08 -0800
    Jan 7 02:44:17 MacBookPro /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/Resour ces/dotmacsyncclient[620]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:44:18 MacBookPro /usr/sbin/ocspd[623]: starting
    Jan 7 02:45:43 MacBookPro /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[626]: Warning: accessing obsolete X509Anchors.
    Jan 7 02:46:13: --- last message repeated 1 time ---
    Some of these things sound REALLY weird to me - for example, the references to vaccuuming. Too strange! <LOL>
    If your Mac is running at midnight, the log should "turn over" -- the current one (system.log) renamed to system.log.0.bz2, the previous to system.log.1.bz2, etc., and a new system.log started. So what you're seeing started 12 minutes after midnight.
    Yes, I figured that out. What I find strange about that process, though, is that Console appears to number the logs backwards. In other words, the one after the most recent one is #0 and the oldest one in the list is #7. Seems odd to me but there's obviously some kind of rationale at work there. :>)
    I have no idea what those 30,000 files were, but I'd strongly suspect the permission repair you did earlier. I also have no idea what the initial 480 gb it thought it needed was about.
    That would make perfect sense if it wasn't for the fact that the permission repair came about 8 hours AFTER the quoted part of the log! Another odd thing, which I think I've mentioned already, is that the error message appeared some time after I got up, had breakfast, put the dogs out, etc. so it was after 9 am or so. I cannot find a repeat of the copied part anywhere else during that morning or during that day, as far as that goes, so the error report obviously referred to the 12-2am activity but it sure took its time appearing.
    IF this backup completed normally, then subsequent ones should be very quick and small, unless there were many large files changed.
    Also, this whole process seems very slow. How much memory do you have, and was anything else of note running at this time? Do you have other performance issues?
    Generally it IS very fast, from what I can tell. Most of the time I don't even notice it happening, even thought the drive is pretty noisy. I have 2 GB of Ram and most likely had Photoshop, InDesign, GoLive, FileMakerPro all running, plus miscellaneous "small" apps like bookkeeping stuff. If I open up any MS Office stuff I try to quit them as soon as I've finished using them, as they do seem to cause problems (why am I not surprised?!).
    And check the TM menu bar icon and/or System Preferences > Time Machine to be sure you have normal completions.
    Most of the time I do; at least, I do whenever I think to take a look. It seems to have been chugging along quite happily ever since this "event", so maybe all is well now? I'm going to go in and clear off the old stuff, moving it to the LaCie drive, now that the Permissions should (hopefully) let me. That should help, I would think. I've toyed with the idea of burning the really old stuff to DVDs but I'd just lose them in the stacks and stacks and stacks (ad infinitum it seems at times) of CDs/DVDs I have here after putting together magazines/websites for 10 to 15 years. I never throw anything out if I can help it, although I did regretfully part with the old floppies once I no longer had a floppy drive. It's amazing how often I have to search out some really old photo or something that someone wants to re-use when a dog dies or something.
    Thanks again (I really can't say that often enough) for your help with this!

Maybe you are looking for

  • Creating PDF from File, missing Settings

    Acrobat Professional. 6.0. I never used Acrobats "Create PDF from file", as in my MS Office 2000 there was "Acrobat - Convert to Adobe PDF" menu item with the possibility to change joboptions settings. My current MS Office 2007 now has its own PDF co

  • Creating a pdf with user selectable images?

    Hello, I'm quite new to indesign and need some help. I really hate to be that guy saying "quick someone fix my problem for me" but I'm signifigantly behind schedual and this is holding me up. Basically, I need some way to alow a used to select from a

  • QuickTime Export in Photoshop CC

    I haven't been able to export (render) a small animation to Quicktime in Photoshop CC. I still have Photoshop CS5 installed and it is not a problem there. The only option I have in CC is to export to "Photoshop Image Sequence". Adobe Media Encoder is

  • PDF File says its empty upon opening.

    One week ago, I am able to open this PDF file. All of a sudden, I can't open the same pdf file in my AirMail App and my hotmail using Safari on my Macbook. This has been happened two days ago, and I restarted my computer, redownload the application,

  • Wlst connecting to admin server

    I am confused that we can connect to the admin servers using wlst without password? Is that true and under what circumstances we will be able to connect to the servers?