Creation of Users causes Password Service Crash

Hi All,
I somehow managed to post this in the wrong forum in PHDs - sorry about that, so am re-posting here in something more appropriate:
I have 3 Intel XServes and 2 Mac Pros on different sites which all have the same issue. When I create a user in Workgroup Manager, the following error occurs and the Password Service crashes:
"Got unexpected error
Error of type Not a known DirStatus (-1) on line 1922
of /SourceCache/ServerManagerUserGeneral/
ServerManagerUserGeneral-193.4.1/
UserAdvancedPluginView.mm"
As well as the password service crashing, it causes all other users to stop authenticating until the server is rebooted.
If I create a user with the default shortname (i.e. untitled_1) then the service does not crash. I have reinstalled the OS, replicated my build on a PPC machine with no issues but continue to have this error on the Intel machines. I have even tried installing the server OS onto an Intel iMac just to test and it does the same thing, including OSX Server 10.4.7 and 10.4.8
Has anyone else come across this or have any suggestions on what may have caused it?
Cheers,
PJR

Have just realised why my XServe does not have the "MacOSXServerUpd10.4.8Univ.pkg" sitting in the receipts folder.... the server shipped with a 10.4.8 disc so that is the 'base OS' for it.
Have just checked another server running 10.4.8 on a Mac Pro and that does have the file as originally (because it doesn't ship with the Server OS) came with a 10.4.7 Server install disc.
I have upgraded the XServe to 10.4.9 using the combo update and initial testing seems to show that it is all working properly, however this server is in an integrated environment and not authenticating users usually.
I will have to backup another server running full OD services and try an upgrade (or reinstall the pkg) on this.
Many thanks!!
PJ
--

Similar Messages

  • User Creation causes Password Service to Crash

    Hi All,
    I have 3 Intel XServes and 2 Mac Pros on different sites which all have the same issue. When I create a user in Workgroup Manager, the following error occurs and the Password Service crashes:
    "Got unexpected error
    Error of type Not a known DirStatus (-1) on line 1922
    of /SourceCache/ServerManagerUserGeneral/
    ServerManagerUserGeneral-193.4.1/
    UserAdvancedPluginView.mm"
    As well as the password service crashing, it causes all other users to stop authenticating until the server is rebooted.
    If I create a user with the default shortname (i.e. untitled_1) then the service does not crash. I have reinstalled the OS, replicated my build on a PPC machine with no issues but continue to have this error on the Intel machines. I have even tried installing the server OS onto an Intel iMac just to test and it does the same thing, including OSX Server 10.4.7 and 10.4.8
    Has anyone else come across this or have any suggestions on what may have caused it?
    Cheers,
    PJR

    Finally had Apple on the phone again yesterday who admitted that this was a known issue - Only took 8 months from when I first raised it!!

  • Pwck Complaining about homeless users, causing shadow.service to fail

    I was looking through my journal and noticed the following error:
    Jul 08 00:00:00 raspberry_pi systemd[1]: Failed to start Verify integrity of password and group files.
    Checking the status of shadow.service produces this output:
    ~ $ sudo systemctl status -l shadow
    ● shadow.service - Verify integrity of password and group files
    Loaded: loaded (/usr/lib/systemd/system/shadow.service; static)
    Active: failed (Result: exit-code) since Tue 2014-07-08 00:00:00 PDT; 5min ago
    Process: 11736 ExecStart=/usr/bin/pwck -r (code=exited, status=2)
    Main PID: 11736 (code=exited, status=2)
    Jul 08 00:00:00 raspberry_pi systemd[1]: Starting Verify integrity of password and group files...
    Jul 08 00:00:00 raspberry_pi pwck[11736]: user 'remote': directory '/home/remote' does not exist
    Jul 08 00:00:00 raspberry_pi systemd[1]: shadow.service: main process exited, code=exited, status=2/INVALIDARGUMENT
    Jul 08 00:00:00 raspberry_pi systemd[1]: Failed to start Verify integrity of password and group files.
    Jul 08 00:00:00 raspberry_pi systemd[1]: Unit shadow.service entered failed state.
    Jul 08 00:00:01 raspberry_pi pwck[11736]: pwck: no changes
    The passwd entry for this user is
    ~ $ cat /etc/passwd
    remote:x:1001:100::/home/remote:/bin/nologin
    I guess this explains why pwck is complaining and causing shadow.service to fail. However, this user was created a long time ago, explicitly without a home directory, so I am not sure why a home path is specified in the passwd file. I also feel certain that this error is relatively new.
    So, using the following command I created a test user without a home directory so that I could at least see what a passwd line for a user without a home directory is supposed to look like, but to my surprise a home path was specified in the passwd file and pwck complained about the new user in the same way.
    ~ $ sudo useradd -M -g users -s /bin/bash testuser
    ~ $ cat /etc/passwd
    testuser:x:1002:100::/home/testuser:/bin/bash
    ~ $ sudo pwck -r
    user 'remote': directory '/home/remote' does not exist
    user 'testuser': directory '/home/testuser' does not exist
    pwck: no changes
    I also created a throwaway user on my x86 notebook to see if this happens, and it does, so this does not appear to be related to the architecture.
    Is there anything I could do short of creating a home directory for this user, or does this look like a bug?

    Hope it's not too late to answer this.
    Changing the home directory to /dev/null seems to have solved the issue for me.
    Still don't know what negative effects that might have for me, but shadow.service runs normally as far as I can tell.
    Edit:
    Performing
    userdel -r <user>
    throws
    userdel: /dev/null not owned by <user>, not removing
    , so setting /dev/null as the home directory is relatively "safe"
    Last edited by zomernifalt (2014-11-05 15:55:36)

  • Using BO SDK creation of User with Password

    Hello All,
    I am creating web application in which I am passing User name
    and password.
    In case of password it give some BO specific error like.
    1) password should be 6 character.
    2) password must contain number and alphanumeric value.
    it is application using BO SDK.
    it is possible that I can create User in BO with any password(BO SDK)
    or I want to enter according to BO validation?
    Please help me.
    Regards,
    Prashant Joshi

    You need to refer to BO Validation
    Here is a snippet code
    void addUserAndProperties(IInfoStore infoStore, String accountName, String userName, String description, boolean namedUser, boolean passwordNeverExpires, boolean mustChangePassword, boolean cannotChangePassword, String password)
        try{
        // Call the addUser method to create the new user account.
        int newUserID = addUser (infoStore, accountName, userName, description);
        // Retrieve the specified user object.
         IInfoObjects rUser = infoStore.query("Select SI_ID, SI_PROGID From "
                           + "CI_SYSTEMOBJECTS Where SI_ID=" + newUserID);
         if (rUser.size() == 0)
             //The query returned a blank collection (no object found).
            throw new Error("The user could not be found.");
         IInfoObject iUser = (IInfoObject) rUser.get(0);
        // Check that the InfoObject has the User ProgID.
        String uProgID = (String) iUser.properties()
                         .getProperty(CePropertyID.SI_PROGID).getValue();
        if (uProgID.equals(CeProgID.USER))
            // Set the user object's plugin-specific properties.
            ((IUser)iUser).setFullName (userName);
            ((IUser)iUser).setPasswordExpiryAllowed (passwordNeverExpires);
            ((IUser)iUser).setPasswordToChangeAtNextLogon (mustChangePassword);
            ((IUser)iUser).setPasswordChangeAllowed (cannotChangePassword);
            ((IUser)iUser).setNewPassword (password);
            //((IUser)iUser).setDescription(((IUser)iUser).getFullName());
            if (namedUser)
                ((IUser)iUser).setConnection(0);
            else
                ((IUser)iUser).setConnection(1);
            infoStore.commit (rUser);
        }catch (SDKException e) {
              System.err.println("Failed to add the user's properties. Exception caught: " + e.getMessage());
    Cheers

  • Active Directory Domain Services crash after Administrator renames object in Active Directory Users and Computers

    Hello.
    We have two domain controllers - node1 (Windows 2008 R2) and node2 (Windows 2012 R2). When administrator connects to node2 and tries to rename some object in AD (for example, user) AD Domain Services crashes and reboot server after 60 seconds.
    In Events I can see these messages:
    Log Name:      Directory Service
    Source:        Microsoft-Windows-ActiveDirectory_DomainService
    Date:          04.03.2014 12:37:58
    Event ID:      1173
    Task Category: Internal Processing
    Level:         Warning
    Keywords:      Classic
    User:          domain\admin
    Computer:      NODE2.domain.example
    Description:
    Internal event: Active Directory Domain Services has encountered the following exception and associated parameters.
    Exception:
    c0000005
    Parameter:
    0
    Additional Data
    Error value:
    7ffc7c38e45d
    Internal ID:
    0
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-ActiveDirectory_DomainService" Guid="{0e8478c5-3605-4e8c-8497-1e730c959516}" EventSourceName="NTDS General" />
        <EventID Qualifiers="32768">1173</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>9</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2014-03-04T06:37:58.116264800Z" />
        <EventRecordID>881</EventRecordID>
        <Correlation />
        <Execution ProcessID="572" ThreadID="2580" />
        <Channel>Directory Service</Channel>
        <Computer>NODE2.domain.example</Computer>
        <Security UserID="S-1-5-21-3794920928-4165619442-305938157-2047" />
      </System>
      <EventData>
        <Data>c0000005</Data>
        <Data>7ffc7c38e45d</Data>
        <Data>0</Data>
        <Data>0</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Microsoft-Windows-Wininit
    Date:          04.03.2014 12:37:58
    Event ID:      1015
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      NODE2.domain.example
    Description:
    A critical system process, C:\Windows\system32\lsass.exe, failed with status code c0000005.  The machine must now be restarted.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Wininit" Guid="{206f6dea-d3c5-4d10-bc72-989f03c8b84b}" EventSourceName="Wininit" />
        <EventID Qualifiers="49152">1015</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-03-04T06:37:58.000000000Z" />
        <EventRecordID>189578</EventRecordID>
        <Correlation />
        <Execution ProcessID="0" ThreadID="0" />
        <Channel>Application</Channel>
        <Computer>NODE2.domain.example</Computer>
        <Security />
      </System>
      <EventData>
        <Data>C:\Windows\system32\lsass.exe</Data>
        <Data>c0000005</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Application Error
    Date:          04.03.2014 12:37:58
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      NODE2.domain.example
    Description:
    Faulting application name: lsass.exe, version: 6.3.9600.16384, time stamp: 0x5215e25f
    Faulting module name: ntdsai.dll, version: 6.3.9600.16421, time stamp: 0x524fcaed
    Exception code: 0xc0000005
    Fault offset: 0x000000000019e45d
    Faulting process id: 0x23c
    Faulting application start time: 0x01cf3773fe973e1b
    Faulting application path: C:\Windows\system32\lsass.exe
    Faulting module path: C:\Windows\system32\ntdsai.dll
    Report Id: 85cfbe32-a367-11e3-80cc-00155d006724
    Faulting package full name:
    Faulting package-relative application ID:
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-03-04T06:37:58.000000000Z" />
        <EventRecordID>189576</EventRecordID>
        <Channel>Application</Channel>
        <Computer>NODE2.domain.example</Computer>
        <Security />
      </System>
      <EventData>
        <Data>lsass.exe</Data>
        <Data>6.3.9600.16384</Data>
        <Data>5215e25f</Data>
        <Data>ntdsai.dll</Data>
        <Data>6.3.9600.16421</Data>
        <Data>524fcaed</Data>
        <Data>c0000005</Data>
        <Data>000000000019e45d</Data>
        <Data>23c</Data>
        <Data>01cf3773fe973e1b</Data>
        <Data>C:\Windows\system32\lsass.exe</Data>
        <Data>C:\Windows\system32\ntdsai.dll</Data>
        <Data>85cfbe32-a367-11e3-80cc-00155d006724</Data>
        <Data>
        </Data>
        <Data>
        </Data>
      </EventData>
    </Event>
    In node2 we installed all available updates and hotfixes.

     Hi Azamat Hackimov,
    Regarding to error messages, it seems that the
    ntdsai.dll file caused the issue. Based on current situation, please use
    sfc /scannow command to scan protected system files and check if find error and repair. Meanwhile, you can also navigate to the location of this DLL file and confirm details.
    In addition, Windows Server 2012 R2 has reboot unexpectedly. Please check if you get some dump file and then analysis it. It may help us to find the root reason. Please refer
    to the following KB.
    How to read the small dump memory dump file that is created by Windows if a crash occurs.
    http://support.microsoft.com/kb/315263/en-us
    By the way, it is not effective for us to debug the crash dump file here in the forum. If this issues is a state of emergency for you. Please contact Microsoft Customer Service
    and Support (CSS) via telephone so that a dedicated Support Professional can assist with your request.
    To obtain the phone numbers for specific technology request, please refer to the web site listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;OfferProPhone#faq607
    Hope this helps.
    Best regards,
    Justin Gu

  • User Account Password Resetting

    Hi All,
    I have an issue on one site running 10.4.9 server on an Intel XServe where one individual user account continually has the password reset, meaning that she cannot logon.
    Previously on this server I had the issue with the Password Service crashing everytime a user was created which seems to have been fixed with the update of 10.4.9, however this user still continues to be a problem
    There seems to be no reason for the account resetting, the server has not been rebooted for it to happen, nothing in the system log shows anything abnormal.
    A few weeks back I tried deleting the user account and re-creating her which worked for a few days and then it happened again.
    Following the 10.4.9 install I have deleted her account and created her again with a brand new SID and that worked a treat for a week, and then yesterday it happened again.
    We are now having to manually reset her password every few days so that she can logon to the system. She is the only user affected and I have disabled the complexity requirements for passwords in the Open Directory Service.
    If anyone has any thoughts/ideas on what could be causing this then please let me know.
    Cheers,
    PJR

    I know we've got an answer, but I wanted to throw in another permutation I came across. This applies to people running OS X Server in the "magic triangle" configuration, where authentication is handled by something other than OS X Server (eDirectory, in my case.)
    I'd try to log in to an account and the login window would shake at me. Go in to workgroup manager, reset the password, try again and it works. However the next time I try to log in I'll get the same error.
    This puzzled me for a minute, but it was the regularity of the behavior that tipped me off. The problem is simply that the user's password has expired, and the message doesn't make it through to the Macs. Maybe it does with Active Directory (anyone?) and maybe there's an LDAP binding to make it work with eDirectory (anyone again?) Likewise, maybe there's a binding that will let eDirectory know that WGM changed the password. In any case, that was the problem and the solution was simply to change my password using the Novell client on a Windows box.
    There, maybe that'll help someone out in a very specific situation...

  • External Web Service - User and password in HTTP header

    Hi!
    How is it possible to add user and password in the HTTP header in a external web service call? 
    I have created a "Portal Service from WSDL file - Client side" with the wizard in SAP Developer Studio.  I following the Java Development Guide - Web Service Security, and use the <i>secured service connection</i>.  I have also created a new <i>System Landscape</i>, but should the new system be based on HTTP, my own PAR or what?
    How can I check that the user and password is added to the HTTP header or the SOAP envelope? Do I have to scan http traffic with a proxy as Paros or can I find the request sent from SAP EP in the logs?
    Cheers
    Asle

    Hello All,
    I have been struggling a bit while putting a reasonable security framework on a jax-rpc style web service. I'm using JWSDP1.2 to set up the webservice. I've tried to outline my problem below. Please correct me where I'm wrong.
    I've been through the Sun's WS tutorials, but they are not really clear on security. However, from them I surmised that there are two decent authentication techniques. HTTP Basic and mutual authentication (MA) . Both have their drawbacks though. HTTP Basic suffers from poor encryption while MA is a bit difficult to set up on both client and server sides. Another problem with MA is that there is no central repository for users/passwords.
    OK, what I would really like to do is use my own user database to verify users/passwords i.e. use a HTTP Basic like authentication (but at application level) but run it over SSL for encryption. It seems simple, but is it possible?
    Also, I have noted that when I use HTTP Basic on the service side, and use a java client, then setting username/password has no effect. In other words, I can always access the web-service, even with wrong username/password.
    Sorry for the long post. Hope someone can help. Thanks.

  • Dynamic User Name & Password Creation

    Hello,
    In My Project I want to create no. of dynamic username & password as per user enters no of user he/she want to create.
    For that i used database table's last auto-increment value and increment it to 1 & append it to 'st' for student(st+01)
    so i am creating User name & Password Like st02 & st02 etc.
    now my problem is when maxium limit of auto increment number is reached Usernmae & password repeats,so unique usernmae & Password creation not possible?
    Is there any other way to do this other than using databse table's auto-increment field

    Make sure the ID doesn't loop? An int(11) should provide MORE than enough possibilities. Be sure to use a long on the java side to hold the ID.

  • Mass creation of Oracle HR Self Service Users (for access to all employees)

    Mass creation of Oracle HR Self Service Users (for access to all employees)
    Hi all,
    We have Oracle Human Resources 11.5.7 and recently implement Oracle HRMS (Self Service) for the purpose of Online Appraisal System.
    Is there any fast way to create all employees as users of the Self Service instead of creating the users manually one by one in HR?
    I would appreciate any feedback.
    Thanking you in advance.
    Best regards,
    Elena Demetriou
    Hellenic Bank

    Check pages 2-23 and following of the Deploying SSHR Capability V5.2 guide on Metalink. It describes the methods for Batch Creation of User Accounts.

  • PDFs cause Safari to crash

    It all works fine on my own MacBook Pro, but my friend's identical (except he still has the original HDD) Mac tries to divide some (but not all) PDFs by zero, causing Safari to crash.  The same PDFs open OK in Chrome, but neither browser is able to download the PDF plugin from get.adobe.com, the spinner just spins until I get bored.  There is no option for 10.6.8.  This is one that crashes: http://www.abcol.ac.uk/documents/publications/Parttime/PTGuide1112.pdf
    Crash report:
    Process:         Safari [196]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.5 (6533.21.1)
    Build Info:      WebBrowser-75332101~6
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [100]
    Date/Time:       2011-07-16 13:50:33.709 +0100
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Exception Type:  EXC_ARITHMETIC (SIGFPE)
    Exception Codes: EXC_I386_DIV (divide by zero)
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreGraphics                  0x00007fff82d56140 cmyk32_image_mark + 29776
    1   com.apple.CoreGraphics                  0x00007fff82d5d34b cmyk32_image + 379
    2   libRIP.A.dylib                          0x00007fff85aeb6dc ripl_Mark + 23
    3   libRIP.A.dylib                          0x00007fff85aeb640 ripl_BltImage + 1389
    4   libRIP.A.dylib                          0x00007fff85aeae61 ripc_RenderImage + 323
    5   libRIP.A.dylib                          0x00007fff85af751e ripc_EndLayer + 992
    6   com.apple.CoreGraphics                  0x00007fff82a7d28d CGContextEndTransparencyLayer + 96
    7   com.apple.CoreGraphics                  0x00007fff82bf9bd5 CGPDFDrawingContextDrawGroupStream + 351
    8   com.apple.CoreGraphics                  0x00007fff82bff807 CGPDFDrawingContextDrawGroup + 464
    9   com.apple.CoreGraphics                  0x00007fff82bfa897 op_Do + 143
    10  com.apple.CoreGraphics                  0x00007fff82ac13da pdf_scanner_handle_xname + 105
    11  com.apple.CoreGraphics                  0x00007fff82ac079b CGPDFScannerScan + 472
    12  com.apple.CoreGraphics                  0x00007fff82bf9bc5 CGPDFDrawingContextDrawGroupStream + 335
    13  com.apple.CoreGraphics                  0x00007fff82bff807 CGPDFDrawingContextDrawGroup + 464
    14  com.apple.CoreGraphics                  0x00007fff82bfa897 op_Do + 143
    15  com.apple.CoreGraphics                  0x00007fff82ac13da pdf_scanner_handle_xname + 105
    16  com.apple.CoreGraphics                  0x00007fff82ac079b CGPDFScannerScan + 472
    17  com.apple.CoreGraphics                  0x00007fff82abe734 CGPDFDrawingContextDrawPage + 503
    18  com.apple.CoreGraphics                  0x00007fff82abe4ee CGContextDrawPDFPageWithProgressCallback + 100
    19  com.apple.PDFKit                        0x00007fff8296c15f -[PDFPage(PDFPagePrivate) drawWithBox:inContext:] + 629
    20  com.apple.PDFKit                        0x00007fff82969db5 -[PDFPage(PDFPagePrivate) thumbnailOfSize:forBox:] + 673
    21  com.apple.PDFKit                        0x00007fff829a665e -[PDFThumbnailView(PDFThumbnailViewInternal) generateThumbnail:] + 157
    22  com.apple.PDFKit                        0x00007fff829a2e88 -[PDFThumbnailView(PDFThumbnailViewInternal) thumbnailRefreshTimer:] + 269
    23  com.apple.Foundation                    0x00007fff858c0cb5 __NSFireTimer + 114
    24  com.apple.CoreFoundation                0x00007fff8358bbe8 __CFRunLoopRun + 6488
    25  com.apple.CoreFoundation                0x00007fff83589dbf CFRunLoopRunSpecific + 575
    26  com.apple.HIToolbox                     0x00007fff853357ee RunCurrentEventLoopInMode + 333
    27  com.apple.HIToolbox                     0x00007fff853355f3 ReceiveNextEventCommon + 310
    28  com.apple.HIToolbox                     0x00007fff853354ac BlockUntilNextEventMatchingListInMode + 59
    29  com.apple.AppKit                        0x00007fff80331eb2 _DPSNextEvent + 708
    30  com.apple.AppKit                        0x00007fff80331801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    31  com.apple.Safari                        0x0000000100015ffa 0x100000000 + 90106
    32  com.apple.AppKit                        0x00007fff802f768f -[NSApplication run] + 395
    33  com.apple.AppKit                        0x00007fff802f03b0 NSApplicationMain + 364
    34  com.apple.Safari                        0x0000000100009f1c 0x100000000 + 40732
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8791ac0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8791cadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8791c7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8791c2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8791bc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8791baa5 start_wqthread + 13
    Thread 2:  WebCore: IconDatabase
    0   libSystem.B.dylib                       0x00007fff8793ca6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff87940881 _pthread_cond_wait + 1286
    2   com.apple.WebCore                       0x00007fff88bfc199 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3   com.apple.WebCore                       0x00007fff88bf829c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4   libSystem.B.dylib                       0x00007fff8793afd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8793ae89 thread_start + 13
    Thread 3:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff87901d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff879023ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8358a932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83589dbf CFRunLoopRunSpecific + 575
    4   com.apple.Safari                        0x000000010002f5c9 0x100000000 + 193993
    5   com.apple.Safari                        0x000000010002f559 0x100000000 + 193881
    6   libSystem.B.dylib                       0x00007fff8793afd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8793ae89 thread_start + 13
    Thread 4:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff87945932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff835ac498 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff8793afd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff8793ae89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff8791ba2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8791be3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8791baa5 start_wqthread + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff87901d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff879023ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8358a932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83589dbf CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff858ea23f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff8586b204 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff8793afd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8793ae89 thread_start + 13
    Thread 7:  Safari: SnapshotStore
    0   libPng.dylib                            0x00007fff86b38676 png_write_find_filter + 2379
    1   libPng.dylib                            0x00007fff86b37b7e _cg_png_write_row + 551
    2   com.apple.ImageIO.framework             0x00007fff87491693 writeOnePng + 1650
    3   com.apple.ImageIO.framework             0x00007fff87490fef _CGImagePluginWritePNG + 106
    4   com.apple.ImageIO.framework             0x00007fff874884b3 CGImageDestinationFinalize + 131
    5   com.apple.Safari                        0x0000000100048c9b 0x100000000 + 298139
    6   com.apple.Safari                        0x00000001000477ff 0x100000000 + 292863
    7   com.apple.Safari                        0x0000000100046f29 0x100000000 + 290601
    8   libSystem.B.dylib                       0x00007fff8793afd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8793ae89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8791ba2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8791be3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8791baa5 start_wqthread + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff8793ca6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8793c8f9 nanosleep + 148
    2   com.apple.Foundation                    0x00007fff858efcd0 +[NSThread sleepForTimeInterval:] + 101
    3   com.apple.PDFKit                        0x00007fff829481a5 -[PDFDisplayView periodicFlushRoutine:] + 113
    4   com.apple.Foundation                    0x00007fff8586b204 __NSThread__main__ + 1429
    5   libSystem.B.dylib                       0x00007fff8793afd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8793ae89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff8791ba2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8791be3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8791baa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00000000ffff0000  rbx: 0x00000000000000cd  rcx: 0x00000000000000d7  rdx: 0x00000000ffffffff
      rdi: 0x0000000000000009  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfd040  rsp: 0x00007fff5fbfc520
       r8: 0x00000000000000d6   r9: 0x00000000000000d7  r10: 0x00000000000000d6  r11: 0x00000000000000d6
      r12: 0x00000000000000d7  r13: 0x00000000000000d6  r14: 0x00007fff5fbfc568  r15: 0x00000000000000d6
      rip: 0x00007fff82d56140  rfl: 0x0000000000010287  cr2: 0x000000011a8b7018
    Binary Images:
           0x100000000 -        0x1006afff7  com.apple.Safari 5.0.5 (6533.21.1) <09261F3D-C3EC-A309-83F4-DC49CC549176> /Applications/Safari.app/Contents/MacOS/Safari
           0x100d56000 -        0x100d56fff  com.apple.JavaPluginCocoa 13.5.0 (13.5.0) <2147F637-E291-A79E-770B-E122F4A1FA47> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
           0x115b8b000 -        0x115b8fff7  libFontRegistryUI.dylib ??? (???) <763B8E8F-8602-2096-7CC8-CEE1F4248028> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x115b95000 -        0x115b96fff  ATSHI.dylib ??? (???) <F6C4F446-7AC4-7A17-9302-C38A016322B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x1162c9000 -        0x1162ceff7  JavaLaunching ??? (???) <9E94B3DF-E0FB-BE09-1F88-E6334CA87466> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
           0x11bd64000 -        0x11bf19fff  libCMaps.A.dylib 545.0.0 (compatibility 64.0.0) <E022A364-3963-F0DB-7E36-1B746DE8419F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800c4fef  com.apple.ColorSync 4.6.6 (4.6.6) <BB2C5813-C61D-3CBA-A8F7-0E59E46EBEE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff800db000 -     0x7fff800deff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff800df000 -     0x7fff800e5ff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff800e6000 -     0x7fff80139ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8013a000 -     0x7fff80151fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff80159000 -     0x7fff801a0ff7  com.apple.coreui 2 (114) <31118426-355F-206A-65AB-CCA2D2D3EBD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff801a1000 -     0x7fff801c2fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
        0x7fff801c3000 -     0x7fff801d2fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff801f4000 -     0x7fff80237fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff80238000 -     0x7fff802edfe7  com.apple.ink.framework 1.3.3 (107) <A68339AA-909D-E46C-35C0-72808EE3D043> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff802ee000 -     0x7fff80ce8ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff80ce9000 -     0x7fff80d5aff7  com.apple.AppleVAFramework 4.10.26 (4.10.26) <28C1B366-DF2B-111B-1863-0713B105D930> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff80d5b000 -     0x7fff80dd7ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff80e6e000 -     0x7fff80e6eff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff80e6f000 -     0x7fff80eb0fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff80eb1000 -     0x7fff80fd9ff7  com.apple.MediaToolbox 0.484.52 (484.52) <F03DAC32-79DB-EA5A-9B8D-CB288AF91A56> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff80fda000 -     0x7fff81022ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff810db000 -     0x7fff81522fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff81523000 -     0x7fff8153eff7  com.apple.openscripting 1.3.1 (???) <DC329CD4-1159-A40A-A769-70CAA70F601A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8155b000 -     0x7fff81661fe7  com.apple.PubSub 1.0.5 (65.21) <1F9B7C84-375D-036F-790A-02BBE7BCE445> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff81662000 -     0x7fff816abfef  libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff816ac000 -     0x7fff8172efff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff81855000 -     0x7fff81d5bff7  com.apple.VideoToolbox 0.484.52 (484.52) <FA1B8197-8F5F-73CB-A9A1-49E0FB49CF51> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff81d5c000 -     0x7fff820f9fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff820fa000 -     0x7fff82904fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff82905000 -     0x7fff82905ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff82906000 -     0x7fff82941fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff82942000 -     0x7fff82946ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff82947000 -     0x7fff829d6fff  com.apple.PDFKit 2.5.1 (2.5.1) <C0E3AE4B-E71A-16D8-0D51-FB7D3E3AD793> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff829d7000 -     0x7fff82a18fef  com.apple.CoreMedia 0.484.52 (484.52) <3F868AF8-1089-10C3-DCEB-565690FD9742> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff82a19000 -     0x7fff82a1fff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff82a20000 -     0x7fff8311cff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8311d000 -     0x7fff83120ff7  libCoreVMClient.dylib ??? (???) <E03D7C81-A3DA-D44A-A88A-DDBB98AF910B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff83121000 -     0x7fff8312cff7  com.apple.HelpData 2.0.5 (34.1.1) <24DC6CD3-02B7-9332-FF6D-F0C545857B55> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8319b000 -     0x7fff83280fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff83281000 -     0x7fff83284fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff83285000 -     0x7fff8333bff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff83364000 -     0x7fff8338bff7  libJPEG.dylib ??? (???) <B9AA5816-8CCB-AFCB-61FD-3820C6E8219D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8338c000 -     0x7fff833a2fef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
        0x7fff833a3000 -     0x7fff833a9fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8350b000 -     0x7fff8350dfff  libRadiance.dylib ??? (???) <76C1B129-6F25-E43C-1498-B1B88B37163B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8350e000 -     0x7fff8353dfff  com.apple.quartzfilters 1.6.0 (1.6.0) <52D41730-D485-A7AE-4937-FE37FC732F65> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8353e000 -     0x7fff836b5fe7  com.apple.CoreFoundation 6.6.5 (550.43) <31A1C118-AD96-0A11-8BDF-BD55B9940EDC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff836b6000 -     0x7fff837d5fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff837d6000 -     0x7fff8380fff7  com.apple.MeshKit 1.1 (49.2) <B85DDDC7-4053-4DB8-E1B5-AA0CBD4CDD1C> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff83817000 -     0x7fff83854fff  com.apple.LDAPFramework 2.0 (120.1) <F3B7B267-D580-F287-6DE7-8AC91C92AB35> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff83855000 -     0x7fff83866ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff83867000 -     0x7fff8387cff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff83912000 -     0x7fff83926ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8393d000 -     0x7fff839fafff  com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff83a05000 -     0x7fff83a0aff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff83a0b000 -     0x7fff83a75fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7BD7F19B-ACD4-186C-B42D-4DEBA6795628> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff83a76000 -     0x7fff83ad8fe7  com.apple.datadetectorscore 2.0 (80.7) <C3A68083-AFB0-CFC6-8AA5-517C9D1489B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff83b18000 -     0x7fff83b5dfff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff83b6a000 -     0x7fff83c1afff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff83c1b000 -     0x7fff83c65ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff83c66000 -     0x7fff83cebff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff83cec000 -     0x7fff83cf9fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff83d24000 -     0x7fff84167fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff84168000 -     0x7fff84169ff7  com.apple.TrustEvaluationAgent 1.1 (1) <A91CE5B9-3C63-5F8C-5052-95CCAB866F72> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8416a000 -     0x7fff84284fef  libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff84285000 -     0x7fff84475fef  com.apple.JavaScriptCore 6533.20 (6533.20.20) <0AA8B101-C02C-0858-84BC-4E4D397E0231> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff84476000 -     0x7fff84502fef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff84503000 -     0x7fff84580fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff84587000 -     0x7fff847c1fef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff847c2000 -     0x7fff84852fff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff84853000 -     0x7fff84865fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <30FE378B-99FE-8C7C-06D0-A3AA0A0A70D4> /usr/lib/libsasl2.2.dylib
        0x7fff84866000 -     0x7fff84927fff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff84a21000 -     0x7fff84a26fff  libGFXShared.dylib ??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff84a30000 -     0x7fff84a3bfff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff84a3c000 -     0x7fff84b10fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff84b4c000 -     0x7fff84b53fff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff84b54000 -     0x7fff84b5fff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <C359B93B-CC9B-FC0B-959E-FB10674103A7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff84d2a000 -     0x7fff84d38ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff84d39000 -     0x7fff84e16fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff84e17000 -     0x7fff84e17ff7  com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff84e18000 -     0x7fff84e3bfff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff84e3c000 -     0x7fff84e83fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff851c8000 -     0x7fff851e8ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff85287000 -     0x7fff85306fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff85307000 -     0x7fff85605fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff85707000 -     0x7fff85708fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <EC039008-5367-090D-51FD-EA4D2623671A> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff85709000 -     0x7fff8571ffe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff857d6000 -     0x7fff85821fef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8585a000 -     0x7fff85adcfe7  com.apple.Foundation 6.6.7 (751.62) <6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85add000 -     0x7fff85b20ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff85b51000 -     0x7fff85b51ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff85b52000 -     0x7fff85b8fff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff85b90000 -     0x7fff85b9ffff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff85ba0000 -     0x7fff85cd5fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <E5D7DBDB-6DDF-E6F9-C71C-86F4520EE5A3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85cd6000 -     0x7fff85d06fef  com.apple.shortcut 1.1 (1.1) <0A20F092-6161-4EA7-D8E6-859B5C350DE7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff85d07000 -     0x7fff8603bfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8603c000 -     0x7fff8617afff  com.apple.CoreData 102.1 (251) <96C5E9A6-C28C-E9CC-A0DB-27801A22A49F> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8617b000 -     0x7fff8617dfff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8617e000 -     0x7fff861cdff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff862bf000 -     0x7fff862cbfff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff862cc000 -     0x7fff86318fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8639e000 -     0x7fff863c6fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff863c7000 -     0x7fff86480fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff86481000 -     0x7fff864b2fff  libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff864b3000 -     0x7fff86513fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff86514000 -     0x7fff866d2fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff8686c000 -     0x7fff868bbfef  libTIFF.dylib ??? (???) <5DE9F066-9B64-CBE4-976A-CC7B8DD3C31A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff868bc000 -     0x7fff86aa2fe7  libType1Scaler.dylib ??? (???) <ABCF0F92-6476-8861-FA8E-5393645D5164> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
        0x7fff86aa3000 -     0x7fff86ae4fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff86ae5000 -     0x7fff86b2eff7  com.apple.securityinterface 4.0.1 (40418) <E2DC796D-84EC-48F5-34A9-DF614573BE74> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff86b2f000 -     0x7fff86b4cff7  libPng.dylib ??? (???) <4815A8F2-24A0-E783-8A5A-7B4959F562D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff86b4d000 -     0x7fff86b66fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff86b67000 -     0x7fff86b76fef  com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff86b77000 -     0x7fff86bdffff  com.apple.MeshKitRuntime 1.1 (49.2) <A490FE03-313D-1317-A9B8-25EF75CB1A81> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff87392000 -     0x7fff87410ff7  com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff87453000 -     0x7fff87464fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <CF1D9C05-8D77-0FFE-38E8-63D8A23E92E1> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff87468000 -     0x7fff87472fff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff87473000 -     0x7fff87631ff7  com.apple.ImageIO.framework 3.0.4 (3.0.4) <6212CA66-7B18-2AED-6AA8-45185F5D9A03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff87632000 -     0x7fff8766fff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff87670000 -     0x7fff87684fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff87685000 -     0x7fff87685ff7  com.apple.quartzframework 1.5 (1.5) <FA660AAC-70CD-7EA2-5DF1-A8724D8F4B1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff87885000 -     0x7fff87889ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8788a000 -     0x7fff8788aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8788b000 -     0x7fff878b0ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff87901000 -     0x7fff87ac2fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87b61000 -     0x7fff87bcdfe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff87bce000 -     0x7fff87bd3fff  libGIF.dylib ??? (???) <95443F88-7D4C-1DEE-A323-A70F7A1B4B0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff87bd4000 -     0x7fff87bffff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff87c00000 -     0x7fff87d7eff7  com.apple.WebKit 6533.21 (6533.21.1) <C89E93DE-3BFD-2E7A-2A49-356885FA1CDE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff87d7f000 -     0x7fff87db9fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff87dba000 -     0x7fff87dbaff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff87dbd000 -     0x7fff87dc3ff7  com.apple.DiskArbitration 2.3 (2.3) <AAB5CC56-334A-3C60-3C27-54E8F34D754E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff87dc4000 -     0x7fff87f34fff  com.apple.QTKit 7.7 (1783) <DE8DB97C-C058-B40C-492B-D652A30CF571> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff87f35000 -     0x7fff87f36fff  liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
        0x7fff87f37000 -     0x7fff87f6aff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff87f6b000 -     0x7fff881d4fff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff881d5000 -     0x7fff8820bff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff88227000 -     0x7fff8833efef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff8833f000 -     0x7fff88350fff  SyndicationUI ??? (???) <62A4BC15-72EA-0CC1-046A-52E576E8D751> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff88351000 -     0x7fff883f1fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff883f2000 -     0x7fff884fcff7  com.apple.MeshKitIO 1.1 (49.2) <D7227401-9DC9-C2CB-C83B-C2B10C61D4E4> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff884fd000 -     0x7fff8873ffe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff88740000 -     0x7fff887dafe7  com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8880b000 -     0x7fff8880bff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8880c000 -     0x7fff8880dff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8880e000 -     0x7fff88819fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff88828000 -     0x7fff8887dff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8887e000 -     0x7fff88b07ff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88b78000 -     0x7fff88bf5fef  com.apple.backup.framework 1.2.2 (1.2.2) <BB72F0C7-20E2-76DC-6764-5B93A7AC0EB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff88bf6000 -     0x7fff89871fef  com.apple.WebCore 6533.21 (6533.21.1) <15CE3700-C6DC-7F94-5394-4CF78040A40D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib

    If you haven't tried using Safari in another user account, give that a shot because if it crashes there, then that's an indication that the startup disk may need repairing even if Chrome works.
    If you don't have an account setup to test with >  Mac OS X 10.6 Help: Creating a new user
    Only takes a minute.
    If it crashes there, then log back into your admin account, launch Disk Utility.
    Select MacintoshHD in the panel on the left then select the First Aid tab.
    Click: Verify Disk  (not Verify Disk Permissions).
    If the startup disk needs repairing, follow the instructions for Using Disk Utility to verify or repair disks.

  • Directory Service Crashing

    I have been testing leopard server and have run into a problem that puzzles me. I hope that somebody can provide some insights on this issue.
    Installed 10.5 server, advanced with mobile users and time machine backups. Upgraded mobile accounts from Tiger were less than desirable (sync issues). 10.5 users were fine except that the directory service crashed consistently during home directory syncing.
    Did a fresh re-install with upgrade to 10.5.1 before configuration; still the same.
    Did even a standard install with standard users only (basic services to make sure that no manual DNS or OD config. caused the problem ) and the Directory Services still go out on me.
    This is running on a Xserve G5 dual with 6gig of RAM & 500gb raid1 mirror. That machine ran 10.4 perfectly for the last year plus.
    Below are the shortened results form the crash reporter. Any ideas? I was really hoping that I can use leopard server to use iCal server & time machine.
    Thanks!
    Process: DirectoryService [26]
    Path: /usr/sbin/DirectoryService
    Identifier: DirectoryService
    Version: ??? (???)
    Code Type: PPC (Native)
    Parent Process: launchd [1]
    Date/Time: 2007-11-25 20:33:56.179 -0600
    OS Version: Mac OS X Server 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000004b009698
    Crashed Thread: 2
    Thread 0:
    0 libSystem.B.dylib 0x93f689d8 machmsgtrap + 8
    1 libSystem.B.dylib 0x93f6f8fc mach_msg + 56
    2 com.apple.CoreFoundation 0x922f9664 CFRunLoopRunSpecific + 1828
    3 com.apple.CoreFoundation 0x922f9ef4 CFRunLoopRun + 60
    4 DirectoryService 0x000156e4 main + 2356
    5 DirectoryService 0x00014d78 start + 64
    Thread 1:
    0 libSystem.B.dylib 0x93f689d8 machmsgtrap + 8
    1 libSystem.B.dylib 0x93f6f8fc mach_msg + 56
    2 com.apple.CoreFoundation 0x922f9664 CFRunLoopRunSpecific + 1828
    3 com.apple.CoreFoundation 0x922f9ef4 CFRunLoopRun + 60
    4 DirectoryService 0x00020eb0 CPluginRunLoopThread::ThreadMain() + 228
    5 ...ectoryServiceCore.Framework 0x0015a09c DSCThread::Run() + 52
    6 ...ectoryServiceCore.Framework 0x0015a2f4 DSLThread::_RunWrapper(void*) + 96
    7 libSystem.B.dylib 0x93faabf8 pthreadstart + 316
    Thread 2 Crashed:
    0 libsqlite3.0.dylib 0x94ae6850 sqlite3resultvalue + 33024
    1 libsqlite3.0.dylib 0x94ae5728 sqlite3resultvalue + 28632
    2 libsqlite3.0.dylib 0x94af1e5c sqlite3resultvalue + 79628
    3 libsqlite3.0.dylib 0x94af1db4 sqlite3resultvalue + 79460
    4 libsqlite3.0.dylib 0x94b3c3dc sqlite3gettable + 31548
    5 libsqlite3.0.dylib 0x94b3fbf4 sqlite3gettable + 45908
    6 libsqlite3.0.dylib 0x94b3fe64 sqlite3_step + 148
    7 DirectoryService 0x0006d31c CDSLocalPluginNode::sqlExecSync(char const*, unsigned long) + 100
    8 DirectoryService 0x0006eda4 CDSLocalPluginNode::AddRecordIndex(char const*, char const*) + 512
    9 DirectoryService 0x0006f9b0 CDSLocalPluginNode::FlushRecord(__CFString const*, __CFString const*, __CFDictionary const*) + 1308
    10 DirectoryService 0x0006972c CDSLocalPlugin::CloseRecord(sCloseRecord*) + 304
    11 DirectoryService 0x000a4d80 BaseDirectoryPlugin::ProcessRequest(void*) + 520
    12 DirectoryService 0x00069564 CDSLocalPlugin::ProcessRequest(void*) + 600
    13 DirectoryService 0x00012874 CHandlerThread::RefDeallocProc(unsigned long, unsigned long, CServerPlugin*) + 240
    14 DirectoryService 0x0000a73c CRefTable::RemoveRef(unsigned long, unsigned long, long, unsigned long, bool) + 880
    15 DirectoryService 0x0001d6fc CRequestHandler::DoCloseRecord(sComData*, long*) + 220
    16 DirectoryService 0x00009ce4 CRequestHandler::GetRequestData(sComData*, long*, bool*) + 808
    17 DirectoryService 0x00002360 CRequestHandler::HandlePluginCall(sComData**) + 192
    18 DirectoryService 0x00003068 CRequestHandler::HandleRequest(sComData**) + 76
    19 DirectoryService 0x0002d4b8 dsmigdo_apicall + 380
    20 DirectoryService 0x0005de5c Xapicall + 452
    21 DirectoryService 0x0005da80 DirectoryServiceMIG_server + 164
    22 DirectoryService 0x00024330 dsmigdemux_notify(mach_msg_headert*, machmsg_headert*) + 96
    23 libSystem.B.dylib 0x93ff209c machmsgserver + 364
    24 DirectoryService 0x00021130 CMigHandlerThread::ThreadMain() + 312
    25 ...ectoryServiceCore.Framework 0x0015a09c DSCThread::Run() + 52
    26 ...ectoryServiceCore.Framework 0x0015a2f4 DSLThread::_RunWrapper(void*) + 96
    27 libSystem.B.dylib 0x93faabf8 pthreadstart + 316

    My server is grinding to a standstill regularly and in frustration I did a complete erase & install and re-built everything from scratch. The only thing which I 'imported' from the old setup was my mail config using mailbfr, as I need to keep the IMAP mailstores etc. Everything else - Users, Groups, etc was all entered from scratch. I setup the server as a standard install for simplicity's sake.
    And after all that, I am still getting the server grinding to a halt and the only thing I can see in the server logs is that Directory Service is crashing, similar to described in this thread. Why? Could CMB-Mike248 maybe give a bit more info on what his fix does as I cannot pretend to understand it but I am going mad with frustration because I can't get any work done and neither can my staff because they have no services.
    Other clues/information - Mail Service suddenly stops (this has happened 4 times in as many days since the re-install).
    AFP continually stops working and you have to stop/start or toggle a setting to get it going again (well documented bug).
    How can I have this much trouble with a brand new install?
    Mac Mini G4 server, 10.5.1, no other extensions or third party stuff at all, apart from a MySQL installation (latest version). 5 users.
    Here is a dump from the Crash Reporter:
    Process: DirectoryService [5140]
    Path: /usr/sbin/DirectoryService
    Identifier: DirectoryService
    Version: ??? (???)
    Code Type: PPC (Native)
    Parent Process: launchd [1]
    Date/Time: 2008-02-11 13:10:30.465 +0000
    OS Version: Mac OS X Server 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000003d000034
    Crashed Thread: 2
    Thread 0:
    0 libSystem.B.dylib 0x93d369d8 machmsgtrap + 8
    1 libSystem.B.dylib 0x93d3d8fc mach_msg + 56
    2 com.apple.CoreFoundation 0x91d0a664 CFRunLoopRunSpecific + 1828
    3 com.apple.CoreFoundation 0x91d0aef4 CFRunLoopRun + 60
    4 DirectoryService 0x000156e4 main + 2356
    5 DirectoryService 0x00014d78 start + 64
    Thread 1:
    0 libSystem.B.dylib 0x93d369d8 machmsgtrap + 8
    1 libSystem.B.dylib 0x93d3d8fc mach_msg + 56
    2 com.apple.CoreFoundation 0x91d0a664 CFRunLoopRunSpecific + 1828
    3 com.apple.CoreFoundation 0x91d0aef4 CFRunLoopRun + 60
    4 DirectoryService 0x00020eb0 CPluginRunLoopThread::ThreadMain() + 228
    5 ...ectoryServiceCore.Framework 0x0015a09c DSCThread::Run() + 52
    6 ...ectoryServiceCore.Framework 0x0015a2f4 DSLThread::_RunWrapper(void*) + 96
    7 libSystem.B.dylib 0x93d78bf8 pthreadstart + 316
    Thread 2 Crashed:
    0 DirectoryService 0x0009d2e4 ReleaseHash + 76
    1 DirectoryService 0x0009e424 ResetUserGroup(UserGroup*) + 24
    2 DirectoryService 0x0009e850 FindOrAddUG(UserGroup*, int, int, int, int) + 552
    3 DirectoryService 0x0009fa74 DoRecordSearch(int, char*, char*, UserGroup*) + 2020
    4 DirectoryService 0x0009ffd4 GetItem(int, char*, void*, ntsid_t*, int, char*) + 792
    5 DirectoryService 0x000b2730 Mbrd_ProcessGetGroups + 76
    6 DirectoryService 0x0002e2e4 memberdDSmigdoGetGroups + 312
    7 DirectoryService 0x0009d1e4 _XGetGroups + 224
    8 DirectoryService 0x0009cf54 DSmemberdMIG_server + 164
    9 libSystem.B.dylib 0x93dc009c machmsgserver + 364
    10 DirectoryService 0x00021130 CMigHandlerThread::ThreadMain() + 312
    11 ...ectoryServiceCore.Framework 0x0015a09c DSCThread::Run() + 52
    12 ...ectoryServiceCore.Framework 0x0015a2f4 DSLThread::_RunWrapper(void*) + 96
    13 libSystem.B.dylib 0x93d78bf8 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x93d9b064 select$DARWIN_EXTSN + 12
    1 DirectoryService 0x00031cfc DSTCPEndpoint::DoTCPAccept() + 128
    2 DirectoryService 0x00031eac DSTCPEndpoint::AcceptConnection() + 20
    3 DirectoryService 0x0003297c DSTCPListener::WaitForConnection() + 24
    4 DirectoryService 0x00032a54 DSTCPListener::ThreadMain() + 152
    5 ...ectoryServiceCore.Framework 0x0015a09c DSCThread::Run() + 52
    6 ...ectoryServiceCore.Framework 0x0015a2f4 DSLThread::_RunWrapper(void*) + 96
    7 libSystem.B.dylib 0x93d78bf8 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x93d78438 kevent + 12
    1 com.apple.CoreFoundation 0x91ce1fe8 _monitor_file_descriptor_ + 240
    Thread 5:
    0 libSystem.B.dylib 0x93d9b064 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x91d15ab4 __CFSocketManager + 764
    Thread 6:
    0 libSystem.B.dylib 0x93d8c9f8 syscall + 12
    1 DirectoryService 0x000244e4 CMemberdKernelHandlerThread::ThreadMain() + 36
    2 ...ectoryServiceCore.Framework 0x0015a09c DSCThread::Run() + 52
    3 ...ectoryServiceCore.Framework 0x0015a2f4 DSLThread::_RunWrapper(void*) + 96
    4 libSystem.B.dylib 0x93d78bf8 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x93d369d8 machmsgtrap + 8
    1 libSystem.B.dylib 0x93d3d8fc mach_msg + 56
    2 libSystem.B.dylib 0x93da6eec machmsg_serveronce + 300
    3 DirectoryService 0x00021098 CMigHandlerThread::ThreadMain() + 160
    4 ...ectoryServiceCore.Framework 0x0015a09c DSCThread::Run() + 52
    5 ...ectoryServiceCore.Framework 0x0015a2f4 DSLThread::_RunWrapper(void*) + 96
    6 libSystem.B.dylib 0x93d78bf8 pthreadstart + 316
    Thread 2 crashed with PPC Thread State 32:
    srr0: 0x0009d2e4 srr1: 0x0200f030 dar: 0x3d000034 dsisr: 0x40000000
    r0: 0x00000001 r1: 0xf0102780 r2: 0x00000000 r3: 0x00811a00
    r4: 0x81bab86c r5: 0x00000000 r6: 0x00000000 r7: 0x0000004d
    r8: 0x0000004d r9: 0x3d000000 r10: 0x00000100 r11: 0x00000000
    r12: 0x940e7eac r13: 0x00000000 r14: 0x002454d0 r15: 0x002b9110
    r16: 0x00000001 r17: 0x000ca388 r18: 0x00001000 r19: 0xf01028ec
    r20: 0x00206520 r21: 0x000e0000 r22: 0x00000000 r23: 0x00100000
    r24: 0x00110000 r25: 0x00117c7c r26: 0x00000000 r27: 0x00000001
    r28: 0x00100000 r29: 0x00000001 r30: 0x00227060 r31: 0x002455c0
    cr: 0x44224424 xer: 0x00000004 lr: 0x0009e428 ctr: 0x940e7eac
    vrsave: 0x80000000
    Binary Images:
    0x1000 - 0x101ffb +DirectoryService ??? (???) <64d534e11a2187efee27b3d8e34d393d> /usr/sbin/DirectoryService
    0x152000 - 0x161ff3 com.apple.DirectoryServiceCore.Framework 3.5 (3.5) <e504cd79e9181511ade68eb06e0e5e98> /System/Library/PrivateFrameworks/DirectoryServiceCore.framework/Versions/A/Dir ectoryServiceCore
    0x1a5000 - 0x1a7ffe apop.so ??? (???) <e5bc3386d3accb112213cec3f7248c0a> /usr/lib/sasl2/apop.so
    0x1aa000 - 0x1b3ffc digestmd5WebDAV.so ??? (???) <adbfe98ef501713f5fccb41613f4825e> /usr/lib/sasl2/digestmd5WebDAV.so
    0x1b6000 - 0x1b8fff libanonymous.2.so ??? (???) <bb47f955f18e5d01e9062f01fa948e83> /usr/lib/sasl2/libanonymous.2.so
    0x1bb000 - 0x1beffc libcrammd5.2.so ??? (???) <52d38caf9d604491f697777df0eab64e> /usr/lib/sasl2/libcrammd5.2.so
    0x1c1000 - 0x1c3ffc login.so ??? (???) <59a397dfd495a55c18e1c6e813159d6b> /usr/lib/sasl2/login.so
    0x1cf000 - 0x1d9ff4 libdigestmd5.2.so ??? (???) <07d46e9f9649cd303d03e5353e3309a6> /usr/lib/sasl2/libdigestmd5.2.so
    0x1dc000 - 0x1e1fff libgssapiv2.2.so ??? (???) <eaeb91893774a7b535a3a952aabba4bf> /usr/lib/sasl2/libgssapiv2.2.so
    0x1e6000 - 0x1e8ffe libplain.2.so ??? (???) <bd5d1a1ebbbfa57bf2f9a0a84abb2009> /usr/lib/sasl2/libplain.2.so
    0x1eb000 - 0x1eefff mschapv2.so ??? (???) <efc426c234682eb33c18ec33db9a2537> /usr/lib/sasl2/mschapv2.so
    0x1fa000 - 0x1fcfff pwauxprop.so ??? (???) <9163c689711077a9e5a708d7a07d78d0> /usr/lib/sasl2/pwauxprop.so
    0x300000 - 0x317fff dhx.so ??? (???) <52b56cd5b6d0912de2e46748fb3912e7> /usr/lib/sasl2/dhx.so
    0x325000 - 0x32dffc libotp.2.so ??? (???) <eb86019be19bb9ccb278aa41fb8c255c> /usr/lib/sasl2/libotp.2.so
    0x336000 - 0x33cffc libpps.so ??? (???) <2bffa5b33936003e8e0e27ae23e22096> /usr/lib/sasl2/libpps.so
    0x341000 - 0x344ffc shadow_auxprop.so ??? (???) <7f2c5145fb7669bde516636b70d0eb45> /usr/lib/sasl2/shadow_auxprop.so
    0x349000 - 0x34cfff smb_lm.so ??? (???) <346818037a8ecb4c5447c90e21d5ff86> /usr/lib/sasl2/smb_lm.so
    0x34f000 - 0x352ffc smb_nt.so ??? (???) <5ebc7e255b99a74053c0f42f73e74c8d> /usr/lib/sasl2/smb_nt.so
    0x355000 - 0x358ff3 smb_ntlmv2.so ??? (???) <2eaeaf9fed14c914e664436dae2ba87e> /usr/lib/sasl2/smb_ntlmv2.so
    0x36e000 - 0x37ffff com.apple.DirectoryService.PasswordServerPlugin 4.0 (4.0) <334487ebffeaaa79e198ced9fe702ab4> /System/Library/Frameworks/DirectoryService.framework/Resources/Plugins/Passwor dServer.dsplug/Contents/MacOS/PasswordServer
    0x8fe00000 - 0x8fe309d3 dyld 95.3 (???) <a7be977c203ec5c76b2f25a7aef66554> /usr/lib/dyld
    0x900d3000 - 0x9011effb com.apple.Metadata 10.5.0 (398) <b6bb1fd5a7a9135f546b2d8cbd65eafc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90181000 - 0x90481ff3 com.apple.CoreServices.CarbonCore 783 (783) <fd2acaf23e95472f78b8a077fa039986> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90488000 - 0x904a0ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x904a1000 - 0x9051cfff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90da1000 - 0x90e51fff edu.mit.Kerberos 6.0.11 (6.0.11) <16acc832b51b89fdbc563194596623c6> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x917cb000 - 0x917d3fff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x9185f000 - 0x9192dff7 com.apple.CoreServices.OSServices 210.2 (210.2) <bad4943629f870d305f2bc7c6dfffe2d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91a21000 - 0x91a9bffd com.apple.CFNetwork 220 (220) <aed2b0142811435ea0d3e6d10f66b3ee> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91a9c000 - 0x91aa1ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x91ca1000 - 0x91dc6ff3 com.apple.CoreFoundation 6.5 (476) <9073c2bfdf6842562c8b7f0308109c02> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91dc7000 - 0x91fa8ffb com.apple.security 5.0.1 (32736) <15632bf9bbdb223194b3d79a2e48e02d> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x927ee000 - 0x92884ff7 com.apple.LaunchServices 284 (284) <8728538c492c7ebc0c8f325bd53b8b65> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92885000 - 0x9296efff libxml2.2.dylib ??? (???) <6f383df1e1e775be0158ba947784ae13> /usr/lib/libxml2.2.dylib
    0x929d8000 - 0x92a92fff libcrypto.0.9.7.dylib ??? (???) <4ea3d7e9a1c28ac7b17ed80873fe6598> /usr/lib/libcrypto.0.9.7.dylib
    0x93689000 - 0x936b0fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib
    0x93d35000 - 0x93ecefe3 libSystem.B.dylib ??? (???) <8a6cd873dfa7ada786efac188f95ed1b> /usr/lib/libSystem.B.dylib
    0x93ecf000 - 0x93eedfff libresolv.9.dylib ??? (???) <ee2b69c3b0d6d4a3167c307f1ee65cb5> /usr/lib/libresolv.9.dylib
    0x940e2000 - 0x940edffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x94136000 - 0x94179ffb com.apple.DirectoryService.PasswordServerFramework 3.0.1 (3.0.1) <ee0aa258c8e9bdfe6293ff2f5d9c8a00> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x94354000 - 0x9438cfff com.apple.SystemConfiguration 1.9.0 (1.9.0) <d925dde7699e6231c88a41b0254a7591> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94442000 - 0x9458aff3 libicucore.A.dylib ??? (???) <250daed2fb2e6bf114480e2e4da0728b> /usr/lib/libicucore.A.dylib
    0x9459a000 - 0x9467dfeb libobjc.A.dylib ??? (???) <4a90e315bd1718c3f5ae09ee6c23e36c> /usr/lib/libobjc.A.dylib
    0x9467e000 - 0x9468efff libsasl2.2.dylib ??? (???) <18935d5e775962f4728b91189b092d45> /usr/lib/libsasl2.2.dylib
    0x9468f000 - 0x946f6ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x946fd000 - 0x9478ffff com.apple.framework.IOKit 1.5.1 (???) <591b8b0cc4261db98a6e72e38eef5f9a> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94790000 - 0x947baff7 libssl.0.9.7.dylib ??? (???) <5dac2e94552ad76696c35bd6886f5a92> /usr/lib/libssl.0.9.7.dylib
    0x94824000 - 0x94859ffb com.apple.LDAPFramework 1.4.3 (106) <d9a3a16b2d468683b68f714d11196d7b> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x958e8000 - 0x958f6fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x95dfb000 - 0x9603fffb com.apple.Foundation 6.5.1 (677.1) <4152239382fb0f48abbcbf35bd04afa6> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96040000 - 0x9606bff7 libauto.dylib ??? (???) <c1f2bd227817ad7c7bf29ec74729ac7c> /usr/lib/libauto.dylib
    0x9606c000 - 0x960f1fff libsqlite3.0.dylib ??? (???) <7b379cb4220346e99c32c427d4539496> /usr/lib/libsqlite3.0.dylib
    0x964e7000 - 0x964e7ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96bc2000 - 0x96bddff3 com.apple.DirectoryService.Framework 3.5 (3.5) <3246a5d1c6a3d678798a90e8c5cd3677> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96c27000 - 0x96c5cfff com.apple.AE 402 (402) <a4b92c8ac89cc774b85fb44c48b9d882> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96c71000 - 0x96c7afff com.apple.DiskArbitration 2.2 (2.2) <9c8f8ade43fa25b32109ef9dcc0cb5d5> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    Hope someone out there can help me.
    Thanx

  • EPMA Web tier service crashes automatically

    Hi,
    The EPMA web tier service in our application starts and crashes automatically. I have checked the log files and it is showing me following error :
    <Jan 25, 2014 1:48:56 PM IST> <Critical> <Security> <BEA-090402> <Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.>
    <Jan 25, 2014 1:48:56 PM IST> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
      at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:960)
      at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1054)
      at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
      at weblogic.security.SecurityService.start(SecurityService.java:141)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      Truncated. see log file for complete stacktrace
    Caused By: javax.security.auth.login.FailedLoginException: [Security:090303]Authentication Failed: User admin weblogic.security.providers.authentication.LDAPAtnDelegateException: [Security:090295]caught unexpected exception
      at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:251)
      at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
      at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      Truncated. see log file for complete stacktrace
    >
    <Jan 25, 2014 1:48:56 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Jan 25, 2014 1:48:56 PM IST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Jan 25, 2014 1:48:56 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    I tried updating the file boot.properties by entering the user name & password in plain text. Still the error persists. Also the file is nor more stored in encrypted format but is stored in plain text.
    Any help is appreciated. Thanks in advance.

    <Jan 25, 2014 1:48:56 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Jan 25, 2014 1:48:56 PM IST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Jan 25, 2014 1:48:56 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    Because Weblogic is up and running.
    Try to start Weblogic again after changing the boot.properties(Username and password).
    It will ask for username and password at the time starting weblogic, give correct username and password.
    It will come up(max) then try to access.
    I did once the same thing as shown below link,
    http://hyperion-mady.blogspot.in/2013/08/sta-te-changed-toforceshuttingdown-if.html
    http://prasadmadhasi.com/2012/01/11/server-state-changed-to-force_shutting_down-after-changing-weblogic-password-in-obiee-11g/
    Thanks,
    mady

  • Windows Search Service Crashes on Windows Server 2012 R2

    Hi, 
    I'm running Windows Search service on a Windows Server 2012 R2 (24GB RAM, 8-core proc). The index catalog has a little over 2 million items (files and folders indexed). 
    Every once in a while this service crashes, and either remains in limbo or automatically recovers and restarts the index from zero. I'm trying to find out information about what may be causing the crashes and about how to prevent them. Unfortunately, I don't
    seem to be able to find much about the Windows Search service on Windows Server 2012 R2. So anyone who may have input on this, please chip in.
    Additional info:
    - As mentioned above, the server OS is Windows Server 2012 R2. This is a physical server with 24GB RAM, 8-core proc and over 2TB of storage. 
    - This server acts as a DC and as a File Server. In addition to this and Windows Search service, there are no other major services running here
    - Symantec Endpoing protection is installed and running on this server, but I've made sure to exclude the Window Search database from SEP
    Here are some of the errors that are generated when the issue happens:
    The error below may show up in the event logs. If it shows up more than once, the indexing service has likely crashed and won't recover. 
    Log Name: System 
    Source: Service Control Manager 
    Date: 1/23/2015 3:32:15 PM 
    Event ID: 7011 
    Task Category: None 
    Level: Error 
    Keywords: Classic 
    User: N/A 
    Computer: myserver.mydomain.local 
    Description: 
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the WSearch service. 
    I attempted to stop the indexing service, but it didn't stop. I noticed though that the indexing GUI started responding as soon as the
    the service stop command failed. The indexing service seems to have picked up where it was (~300K items) and continued indexing. 
    Logs sequence: 
    Log Name: Application 
    Source: ESENT 
    Date: 1/23/2015 3:57:01 PM 
    Event ID: 102 
    Task Category: General 
    Level: Information 
    Keywords: Classic 
    User: N/A 
    Computer:
    myserver.mydomain.local 
    Description: 
    SearchIndexer (18232) Windows: The database engine (6.03.9600.0000) is starting a new instance (0).
    ====
     Log Name: Application 
    Source: ESENT 
    Date: 1/23/2015 3:57:01 PM 
    Event ID: 300 
    Task Category: Logging/Recovery 
    Level: Information 
    Keywords: Classic 
    User: N/A 
    Computer:
    myserver.mydomain.local  
    Description: 
    SearchIndexer (18232) Windows: The database engine is initiating recovery steps. 
    ====
    Log Name: Application 
    Source: ESENT 
    Date: 1/23/2015 3:57:01 PM 
    Event ID: 301 
    Task Category: Logging/Recovery 
    Level: Information 
    Keywords: Classic 
    User: N/A 
    Computer:
    myserver.mydomain.local 
    Description: 
    SearchIndexer (18232) Windows: The database engine has begun replaying logfile X:\IndexingService\Search\Data\Applications\Windows\edb0053D.log. 
    ====
    Log Name: Application 
    Source: ESENT 
    Date: 1/23/2015 3:57:01 PM 
    Event ID: 301 
    Task Category: Logging/Recovery 
    Level: Information 
    Keywords: Classic 
    User: N/A 
    Computer:
    myserver.mydomain.local 
    Description: 
    SearchIndexer (18232) Windows: The database engine has begun replaying logfile X:\IndexingService\Search\Data\Applications\Windows\edb0053E.log. 
    ====
    Log Name: Application 
    Source: ESENT 
    Date: 1/23/2015 3:57:02 PM 
    Event ID: 301 
    Task Category: Logging/Recovery 
    Level: Information 
    Keywords: Classic 
    User: N/A 
    Computer:
    myserver.mydomain.local
    Description: 
    SearchIndexer (18232) Windows: The database engine has begun replaying logfile X:\IndexingService\Search\Data\Applications\Windows\edb.log. 
    ====
    Log Name: Application 
    Source: ESENT 
    Date: 1/23/2015 3:57:02 PM 
    Event ID: 302 
    Task Category: Logging/Recovery 
    Level: Information 
    Keywords: Classic 
    User: N/A 
    Computer:
    myserver.mydomain.local
    Description: 
    SearchIndexer (18232) Windows: The database engine has successfully completed recovery steps. 
    ====
    Log Name: Application 
    Source: ESENT 
    Date: 1/23/2015 3:57:02 PM 
    Event ID: 105 
    Task Category: General 
    Level: Information 
    Keywords: Classic 
    User: N/A 
    Computer:
    myserver.mydomain.local 
    Description: 
    SearchIndexer (18232) Windows: The database engine started a new instance (0). (Time=1 seconds) 
    Internal Timing Sequence: [1] 0.000, [2] 0.000, [3] 0.000, [4] 0.032, [5] 1.046, [6] 0.094, [7] 0.000, [8] 0.000, [9] 0.000, [10] 0.000.
    ====
    Log Name: Application 
    Source: ESENT 
    Date: 1/23/2015 3:57:02 PM 
    Event ID: 326 
    Task Category: General 
    Level: Information 
    Keywords: Classic 
    User: N/A 
    Computer:
    myserver.mydomain.local 
    Description: 
    SearchIndexer (18232) Windows: The database engine attached a database (1, X:\IndexingService\Search\Data\Applications\Windows\Windows.edb).
    (Time=0 seconds) 
    Internal Timing Sequence: [1] 0.000, [2] 0.000, [3] 0.016, [4] 0.000, [5] 0.000, [6] 0.000, [7] 0.000, [8] 0.000, [9] 0.000, [10] 0.000, [11]
    0.000, [12] 0.000. 
    Saved Cache: 1 0 

    Hi,
    Thanks for your post.
    To resolve this problem, use the Registry Editor to change the default timeout value for all services.
    http://social.technet.microsoft.com/wiki/contents/articles/13765.event-id-7011-service-timeout.aspx
    Please note before making changes to the registry, you should back up any valued data.
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Microsoft Office for Mac open recent File menu option causing AFP to crash

    Hi all,
    We have an Xserve running Mac OS X Server Leopard 10.5.8. The Xserve hosts three file shares for about 60 users. Our network is 99% Mac based running mostly 10.5.8 with a few 10.6.x. We have historically over the past several years had the AFP service become unreliable and crash frequently. Late last week the AFP service crashes constantly. The quick solution to getting it up and running is to delete the AFP.conf file in /etc.
    We have troubleshot one cause of AFP crashing to the Open Recent... File menu option in Microsoft Office for Mac applications. That is, through some amount (haven't been able to narrow it down to how much) of opening documents on the share via the Open Recent menu the AFP service will crash.
    Here's what's happening in the AppleFileServer .crash file:
    Process: AppleFileServer [26065]
    Path: /usr/sbin/AppleFileServer
    Identifier: AppleFileServer
    Version: ??? (???)
    Code Type: X86 (Native)
    Parent Process: launchd [1]
    Date/Time: 2010-04-12 13:25:54.666 -0700
    OS Version: Mac OS X Server 10.5.8 (9L34)
    Report Version: 6
    Anonymous UUID: 273147DD-D725-4DAB-B403-95391FF85FE1
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000015
    Crashed Thread: XX
    ******** blah *********
    Thread XX Crashed:
    0 AppleFileServer 0x0004bc15 operator+(OSException&) + 103513
    1 AppleFileServer 0x00064988 operator+(OSException&) + 205260
    2 AppleFileServer 0x0006da4e operator+(OSException&) + 242322
    3 AppleFileServer 0x000711f3 operator+(OSException&) + 256567
    4 AppleFileServer 0x00071446 operator+(OSException&) + 257162
    5 AppleFileServer 0x00076686 operator+(OSException&) + 278218
    6 AppleFileServer 0x000790d7 operator+(OSException&) + 289051
    7 AppleFileServer 0x0004560c operator+(OSException&) + 77392
    8 AppleFileServer 0x00044269 operator+(OSException&) + 72365
    9 AppleFileServer 0x00044343 operator+(OSException&) + 72583
    10 libSystem.B.dylib 0x9587c155 pthreadstart + 321
    11 libSystem.B.dylib 0x9587c012 thread_start + 34
    This is followed by a lot of these entries in AppleFileService.log file:
    IP xx.xx.xx.xx - - [12/Apr/2010:13:25:54 -0800] "Login username" 0 0 0
    IP xx.xx.xx.xx - - [12/Apr/2010:13:25:54 -0800] "No matching key: username" 1271103954 1271103943 1
    ** - - [12/Apr/2010:13:26:15 -0800] "Mounted Volume VOLUME1" 0 0 0
    ** - - [12/Apr/2010:13:26:15 -0800] "Mounted Volume VOLUME2" 1 0 0
    ** - - [12/Apr/2010:13:26:15 -0800] "DiskArbStart -" 0 0 0
    Our solution is to have all our users turn off the open recent option in Word, Excel, and PowerPoint. Not an ideal solution but it may get the AFP service running "good enough."
    Has anyone had an experience like this before or can anyone duplicate the AFP service crashing when trying to open documents on a share via the open recent menu? Any other ideas?
    Thanks

    Update.
    I have been able to consistently reproduce a problem where the AFP service will crash if a file that a user has an alias to is moved to a folder and the user is denied access to .
    1. On your Mac create an alias to a file or folder, that you have access to, that is stored on a share served via AFP. The alias can be in the Places section of a Finder window, on the Desktop, or anywhere an alias can be created. Lets call what the alias points to the target.
    2. Move the target to a folder on the AFP share and deny the user or group Read & Write access to that folder.
    3. Try accessing the target via the alias created in step 1.
    The AFP service should crash.
    Can anyone reproduce this crash scenario too?

  • Installation error during creation of user SAPJSF

    Hello,
    i'm performing SOLMAN installation and the installation stops in "Import Abap" step with problem creating the SAPJSF user. Several posts regarding the same error did not helped. When the sapinst is trying to create the SAPJSF user, i notice that the DB2 service in Windows services changes from "started" to "stopped"
    OS:windows 2003 enterprise 64bit
    DB:db2 udb
    SOlman: 7.0 including EHP1
    The error from "sapinst.log":
    WARNING 2010-09-17 10:32:40.906
    Execution of the command "I:\usr\sap\SOF\DVEBMGS00\exe\jlaunch.exe UserCheck.jlaunch com.sap.security.tools.UserCheck "C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\DB6\CENTRAL\AS\install\lib;C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\DB6\CENTRAL\AS\install\sharedlib;C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\DB6\CENTRAL\AS\install" -c sysnr=00 -c ashost=fmgrsolman -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SAPJSF -p XXXXXX -r SAP_BC_JSF_COMMUNICATION_RO -user_type system -message_file UserCheck.message" finished with return code 4. Output:
    Sep 17, 2010 10:30:29... Info: User management tool (com.sap.security.tools.UserCheck) called for action "checkCreate"
    Sep 17, 2010 10:30:30... Info: Connected to backend system SOF client 001 as user DDIC
    Sep 17, 2010 10:30:30... Info: Called for user SAPJSF
    Sep 17, 2010 10:30:30... Info: Formal password check successful
    Sep 17, 2010 10:30:30... Info: Will create user SAPJSF
    Sep 17, 2010 10:31:38... Warning: Error during creation of user SAPJSF. Will remove user again to ensure clean exit state
    Sep 17, 2010 10:32:40... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (103) RFC_ERROR_LOGON_FAILURE: 00024No connect to database, session terminated??????????????????????????
         at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:518)
         at com.sap.mw.jco.MiddlewareJRfc$Client.connect(MiddlewareJRfc.java:1086)
         at com.sap.mw.jco.JCO$Client.connect(JCO.java:3255)
         at com.sap.security.tools.UserCheck.resetJCOClient(UserCheck.java:2479)
         at com.sap.security.tools.UserCheck.deleteUser(UserCheck.java:2024)
         at com.sap.security.tools.UserCheck.main(UserCheck.java:300)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:331)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Sep 17, 2010 10:32:40... Info: Leaving with return code 4
    The error from "UserCheck.log":
    Sep 17, 2010 10:36:58... Info: User management tool (com.sap.security.tools.UserCheck) called for action "checkCreate"
    Sep 17, 2010 10:36:59... Info: Connected to backend system SOF client 001 as user DDIC
    Sep 17, 2010 10:36:59... Info: Called for user SAPJSF
    Sep 17, 2010 10:36:59... Info: Formal password check successful
    Sep 17, 2010 10:36:59... Info: Will create user SAPJSF
    Sep 17, 2010 10:37:59... Warning: Error during creation of user SAPJSF. Will remove user again to ensure clean exit state
    Sep 17, 2010 10:38:56... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (103) RFC_ERROR_LOGON_FAILURE: 00024No connect to database, session terminated??????????????????????????
         at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:518)
         at com.sap.mw.jco.MiddlewareJRfc$Client.connect(MiddlewareJRfc.java:1086)
         at com.sap.mw.jco.JCO$Client.connect(JCO.java:3255)
         at com.sap.security.tools.UserCheck.resetJCOClient(UserCheck.java:2479)
         at com.sap.security.tools.UserCheck.deleteUser(UserCheck.java:2024)
         at com.sap.security.tools.UserCheck.main(UserCheck.java:300)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:331)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Sep 17, 2010 10:38:56... Info: Leaving with return code 4
    Edited by: DimitrisDimas on Sep 20, 2010 5:38 PM

    hi
    wat s ur JDK version??
    please refer this,
    [SAPJSF - no password for user - ECC6 - IDES|SAPJSF - no password for user - ECC6 - IDES]
    jansi

Maybe you are looking for

  • How do I compare images in CC

    I am using Photoshop Creative Cloud - I have 4 images loaded into photoshop. How do I display all 4 images at one time so I can compare them.

  • How do I get my songs in ITunes to stop skipping when crossfading?

    I like my music at parties to crossfade in and out and keep the mood going. Unfortunately on both my Gateway Desktop and Toshiba Laptop the beginning of the next song always skips terribly for a bout 2-3 seconds. What do I need to do to fix this prob

  • JDBC Connection Issue

    Hi experts, We have a visual composer based application which runs on EP 7.0 SP14. This application connect to sql server and use one of its databases. We use Microsoft JDBC drivers SP3 for this purpose. Everything works perfectly, but atleast once i

  • SMD Diagnostics Agent Backup Strategy?

    Posting this question here as well as the Solution Manager forum since we're running SAP on the iSeries. My organization has just started deploying SMD agents across our SAP landscape and we're considering how this new component (the agent) fits in o

  • Suggestions for implementing a scenario

    Hi All, I have a requirement where in I need to add a custom tab in Opportunity TI screen. In that custom tab, we have certain search parameters like Product ID and the search needs to trigger an external web service that takes the search parameters