FastCGI "user" doesn't work

hi,
i'm running Web Server 7.0U4 on Solaris 10U6. i have several virtual hosts which contain PHP applications using FastCGI, most of which run as the web server user. however, in one particular virtual host, i'd like PHP to run as a different user.
in the admin console, i can enter a username and group in the FastCGI responder configuration, but the changes aren't saved. if i re-open the configuration, the user field is blank, instead of containing the value i entered.
i tried to configure this in <vhost>-obj.conf instead:
Service fn="responder-fastcgi" type="application/x-php" app-path="/opt/php/bin/php-cgi" user="accounts"however, the PHP scripts are still running as the web server user, not the user i specified.
what am i missing?

note : if you want to start the fastcgi with a user other than web server runtime user, then you will need to start the server as 'root' . however, there is no any security hole in doing that because web server when started as root spawns another web server process (with the user name as mentioned within config/server.xml) and this is what listens to incoming request.I believe that you are wrong about this Sriram.
The lineage of the FastCGI process is this:
webservd-wdog -> webservd -> webservd -> Fastcgistub -> FCGI Process
On my system WS is configured to run as nobody. The UID order of each of the above processes is:
root -> root -> nobody -> nobody -> nobody
The watchdog has root because it binds to privileged ports as needed and "passes" those FDs to its child, the primordial webserver process, as needed.
The primordial webserver process (which does not handle any requests) is responsible for spawning the worker process in the event of abnormal process terminal. It retains root privileges for much the same reason that watchdog does.
The worker webserver process (the one that actually does the heavy lifting of being a web server) setuid()s itself to the configured user when the process is created. At this point is has given up privileged access and is now restricted to whatever the privileges are that it is configured to run as. All of its children (Fastcgistub and the FCGI processes themselves) inherit this UID from the worker process. In order for them to setuid() themselves to something else they need to start with a UID that has permission to actually perform a setuid(). Typically "nobody" and "webervd" do not have this permission.
Read up on CAP_SETUID (I know this is relevant on Linux, but I believe this is a POSIX thing and should apply to other Unices).
Note that it's also been a long time since I delved into the internals of Web Server. Maybe the inheritance system has changed in ways I'm unfamiliar with. Anyone feel like scrubbing through the Open Web Server code (I know the FastCGI system is in there) to check for certain?

Similar Messages

  • Windows users doesn't work after migrating from old to new server!

    We have done a complete re-install on our XServe with OD. We have about 10 Windows users, and after the installation all their settings and mail are gone. All the "normal" files are there though.
    I'm not sure we have done it the right way though: We did a backup from the old server (a bootable copy with Super Duper), then we formatted and installed everything. We made new accounts (with different names if that's good to know) and copied the users home folders to the new location. The Mac clients seem to work good, but all the settings on the Windows clients are gone...
    Is there an easier way to this? We still have the workable copy from the old installation. There seems to be some kind of export/import way to do this, but I haven't got a clue how to do that...
    Please help!

    davidh,
    We didn't reintegrate smb.conf, but set the new server up just like the old one. We did however compare these files to see that the vital parts (netlogon, shares and so on, and of course basic settings) were correct.
    We also copied the user files and profiles and made them identical on the new server, except for placing them under the new usernames.
    Regarding the Local Settings folder, it doesn't exist on the old server, that's one of the weird things. We've checked the profile for a user on the client machine, and it is a roaming profile. That's why we're a bit puzzled as to why the login works and all files are there, but the user preferences and Outlook doesn't work.
    I know I've read somewhere that the Local Settings aren't replicated like the other files in a roaming profile, but I haven't finished checking up on that. I wouldn't expect anything else than that Windows takes care of Outlook e-mail for a roaming profile as well though; I mean, the user must be able to read his/her mail from any computer in the domain, what else would the purpose of a roaming profile be?
    Except for the weird thing about us not being able to find the user preferences or Outlook files for the client amongst the files on the server, I feel we're missing something; Apparently Windows isn't as straight forward as one would expect (not sure why I did expect anything, come to think of it).
    We're going to give it a new go next weekend. Except for doing further research we're thinking of copying /etc/smb.conf and the files in /var/samba and /var/db/samba to the new server, along with exporting and importing the old user accounts to the new server, and then see if everything works as expected.
    If so, we'll see if we can change the account names in a nice way, it's really desired to do so.
    If not, we really need to do some more research, but if I'm not mistaking, the Samba-related files I just mentioned are the ones that pretty much make up the Windows Services in OS X, isn't that so?
    Thanks!

  • Mount -o users doesn't work as intended, why not?

    I'm trying to modify some of the udev rules in the Arch wiki to work better for my setup. So I have this as /etc/udev/rules.d/11-media-by-label-auto-mount.rules:
    BUS!=usb, KERNEL!="sd[a-z]*", GOTO="media_by_label_auto_mount_end"
    # Import FS infos
    IMPORT{program}="/sbin/blkid -o udev -p %N"
    # Get a label if present, otherwise specify one
    ENV{ID_FS_LABEL}!="", ENV{dir_name}="%E{ID_FS_LABEL}"
    ENV{ID_FS_LABEL}=="", ENV{dir_name}="usbhd-%k"
    # Global mount options
    ACTION=="add", ENV{mount_options}="noatime,users"
    # Filesystem-specific mount options
    ACTION=="add", ENV{ID_FS_TYPE}=="vfat|ntfs", ENV{mount_options}="$env{mount_options},utf8,gid=100,umask=002"
    # Mount the device
    ACTION=="add", RUN+="/bin/mkdir -p /media/%E{dir_name}", RUN+="/bin/mount -o $env{mount_options} /dev/%k /media/%E{dir_name}"
    # Clean up after removal
    ACTION=="remove", ENV{dir_name}!="", RUN+="/bin/umount -l /media/%E{dir_name}", RUN+="/bin/rmdir /media/%E{dir_name}"
    # Exit
    LABEL="media_by_label_auto_mount_end"
    And it mounts usb sticks just fine. Problem is, I still get a permission denied error when trying to unmount them, despite using the "users" mount option, which is supposed to let *any* user unmount the device.
    So I tried mounting the stick manually with the users option...
    # mount -o users /dev/sdb /mnt
    And still got the error on trying to unmount it:
    $ umount /dev/sdb
    umount: /dev/sdb is not in the fstab (and you are not root)
    So it looks like the users option is not working the way the fstab man page says it should. What am I doing wrong here?
    Edit: the users mount option works fine for CDs. Is there a way to make it work for USB sticks, or am I just stuck?
    Last edited by Gullible Jones (2011-01-07 23:37:01)

    Thanks... Kind of strange, that. Is there a way to use pmount and give unmount permissions for all users, so that I don't have to do the silly mount-as-a-specific-user thing?
    Edit: Oh N/M, just unmounting with pumount works great. Thanks!
    Last edited by Gullible Jones (2011-01-08 00:24:58)

  • FireSIGHT FirePOWER controlling traffic based on AD users doesn't work

    Hi all,
    FirePOWER doesn't seam to be working for rules based on users from Active Directory.
    I was able to import users from AD, and I can see the users being matched with an IP (Analysis->Users->Users).
    I can say that the rule does work because if I build it to be IP based, traffic is blocked. But as soon as I add users to the rule, traffic stops being blocked.
    Can someone a bit more experient with FireSIGHT and/or FirePOWER help me out with this...
    thanks

    Hi all,
    FirePOWER doesn't seam to be working for rules based on users from Active Directory.
    I was able to import users from AD, and I can see the users being matched with an IP (Analysis->Users->Users).
    I can say that the rule does work because if I build it to be IP based, traffic is blocked. But as soon as I add users to the rule, traffic stops being blocked.
    Can someone a bit more experient with FireSIGHT and/or FirePOWER help me out with this...
    thanks

  • WPC - MIME object in web article with anonymous user doesn't work correctly

    Hi all,
    we have a problem with the Web Page Composer (NW07 SP14 + Patch 01) and contents for anonymous users.
    We have define a site with the following elements: article (with text and jpg), paragraph (with text and pdf link) and a jpg image. All texts and the "standalone" jpg (not used in article/paragraph) are displayed correctly. The jpg in the article and the pdf link does not work correctly ("broken" link, PDF link requires a login name ?).
    The direct image in the website has the following link:
    <server>/irj/go/km/docs/wpccontent/Sites/alogis_v01_home/Site%20Content/graphics/bild01.jpg
    (short url is turned off for error search...)
    The jpg in the article has the following link (this is the same jpg as the previous picture bild01.jpg):
    <server>/irj/servlet/prt/portal/prtroot/docs/guid/10c76155-d8c8-2a10-a4a5-fa0a0c7246fc
    And the PDF link is:
    <server>/irj/servlet/prt/portal/prtroot/docs/guid/707470fb-e3c8-2a10-94b4-972b06419c40
    For anonymous users the last two urls are not reachable. These urls require a login (the first link not). The links work correctly with a registered user, not with an anonymous user.
    Does anybody have an idea? Is there someone who had this problem before and solved it?
    Many thanks in advance.
    Mirko Galetzka

    Hi,
    I'm not sure if you're aware, but there is a 3.0 beta version of Data Modeler.
    You can download it freely from here :
    http://www.oracle.com/technetwork/developer-tools/datamodeler/overview/index.html
    There are many bugs fixed there.

  • Printing as specific user doesn't work

    Hello,
    at the moment we have a problem with Adobe Reader (latest version 11.0.07) on a Windows 7 Professional Domain-PC (x64).
    If the user tries to print a document, nothing happens. The print-processing doesn't appear after clicking on "print". The print-job isn't going through the spooler, it doens't appear in the job list. Event log has no entrys about that.
    We tried different printers and completely different documents. We reinstalled Adobe Reader using the Adobe Cleaner-Tool, deleted the AppData and Temp-Folders.
    What we can say is that it is a user specific problem. When we log on as Administrator or User (non-Administrator) this problem doesn't appear.
    What can we do? We'd be happy about help.
    Best regards

    Hello,
    is there any solution for my Problem?
    Best regards

  • CANNOT LOAD FIREFOX-LOOKING FOR PERMISSIONS-GIVES 2 CHOICES 1)USE CURRENT USER-(DOESN'T WORK) 2)USE -ADMINISTRATOR-ASKES FOR PASSWORD (I HAVE NO PASWORD) CAN I BE HELPED

    cannot load firefox. goes thru the run process,that asks for current user or administrator.i click current and it just diappears.the second choice gives me a user name(ADMINISTRATOR). won't accept anything i put in as a password.

    Check that you do not run Firefox as Administrator.<br />
    Right-click the Firefox desktop shortcut and choose "Properties".<br />
    In the Compatibility tab, make sure that Privilege Level: "Run this program as Administrator" is not selected.<br />
    Also check your security software.<br />
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process.
    See:
    * [[Server not found]]
    * [[Firewalls]]
    * http://kb.mozillazine.org/Browser_will_not_start_up

  • Lock user with SCUG doesn't work

    Hello,
    We use a SLM 4.0 with last SP (12) .
    When we connect a new system to our CUA (on this SLM), the lock of user doesn't work. We must use the SU10 transaction to make mass modification of users and create the correct idoc.
    I have got any idea about this ?

    I have the very same problem, almost identical circumstances, and I believe it is releated to Home folder syncing, not Adobe. I did not have this problem before I started home folder syncing on my OSX home server.
    My suspicion for the culprit is logging-out while syncing as you do, while using another machine linked to the same account creates some confusion.
    I will test two ways around this:
    1- Do not use two machines while syncing in progress. Do not sync if logged in to another machine.
    2- Stop syncing on log-out, and only sync during log-in.

  • VPN doesn't work anymore after 10.6.2 update

    Hello to all,
    I've a MacPro with 10.6 SnowLeopard server, and until yesterday all was great with 10.6.1.
    After update to 10.6.2 plus some airport update, VPN dooesn't work.
    Could someone help me?
    I use the firewall on Airport extreme (the latest model) and automatically forward VPn setting from SLServer Firewall.
    Why it don't go anymore?
    thank you to all for help
    Marco
    Italy

    so, I'm trying from home to use VPN:
    - if I try from usual user, doesn't work
    - if I try from Server Administrator credentials (user + password) it works
    Of course I need to use VPN from "normal" client users, not with Administrator credentials
    Another strange issue is: in VPN netwotk configaration (client, preferences, network) if I put name and password about one user the 2 field become locked and I must erase that VPN connection and create it again.
    If I put the administrator name+psw, the 2 field remaining accesible and unlocked.
    I think in Apple they made a very bad job with 10.6.2 and VPN!
    has someone any suggestion?
    Marco

  • New created users don't work

    I have a very strange problem here.
    When i create a new user with the workgroup-manager, he doesn't work.
    I can't connect the server by AFP from a client computer with the username and password of the user and i can't connect the web services (wiki-server) with the login data of the user.
    The existing user work fine, only the new generated users doesn't work.
    Maybe a problem with the Open Directory service?
    Has someone an idea what the problem could be?
    Thank you for your help!
    Greetings
    Alex
    Message was edited by: FiveEcco

    ok, my fault, found the mistake.

  • How do i set the proxy user in FF 3.6.13, this entry was existing earlier its gone now. using IE with entries in user account pwds works while FF doesn't.

    How do i set the proxy user in FF 3.6.13.
    previous versions had an entry for proxy user.
    its gone now.
    using IE with entries in user account pwds works while FF doesn't.
    too bad have to change back to IE :-(

    You can find the connection settings in Tools > Options > Advanced : Network : Connection
    See "Firefox connection settings":
    *[[Firefox cannot load websites but other programs can]]

  • Return the User to the Calling Page - doesn't work

    Hello All,
    I set up the "Issue tracker" tutorial to get in tuch with the apex (htmldb vers. 2.0)
    All is working well but: Return the User to the Calling Page -> doesn't work. I performed all steps as descriped in the tutorial (iclusive the '.' on the &P7_PREV_PAGE ;-) ).
    I use my own aplication at home and followed all the instruction steps few times but it does not work. Can you help me please?
    Do I have to install something more?
    In the Branch section: * 1: Go To Page &P7_PREV_PAGE. (Unconditional)
    In the Item section: 90: P7_PREV_PAGE Hidden
    In the Button section for cancel Button: &P7_PREV_PAGE.
    Here is the description of the function in the tutorial:
    Because this Create/Edit page will be called from several places, when users finish with the display they should return to the calling page. To accomplish this, you create an item and change the branch on this page. Every time this page is called, the item must be set with the number of the calling page.
    To create a hidden item:
    1. Under Items, click the Create icon.
    2. For Select Item Type, select Hidden and click Next.
    3. For Display Position and Name:
    1. For Item Name, enter:
    P7_PREV_PAGE
    2. For Region, select Issue Identification.
    3. Click Next.
    4.
    Click Create Item.
    Next, edit the Cancel button.
    5. Under Buttons, select Cancel.
    6. Scroll down to Optional URL Redirect.
    7. In Page, enter:
    &P7_PREV_PAGE.
    Note the period at the end.
    8. Click Apply Changes.
    Next, edit the branch.
    9. Under Action, enter the following in Page:
    &P7_PREV_PAGE.
    10. Click Apply Changes.
    All steps are done but I still got the message: Error ERR-1016 Application "106" Page "0" not found (requested language="de")
    OK
    I move the mousepointer over the cancel button: javascript:redirect('f?p=106:0:5265993428922076876::NO:::')
    Thank you for helping me!
    best regards Thorsten

    All,
    I haven't looked at that tutorial for quite a while but just gave it a quick look.
    Further down in the tutorial, it directs you to set the value of P7_PREV_PAGE, under Add Functionality to Support Adding Multiple Issues Sequentially - have you done that? There is also a mention that there is more branching to be done - "The branch you just created is looking for a value in P7_PREV_PAGE. Since the page was not called from another page, the value has not been set. You need to fix that next." It goes on to have you define that value from other places.
    Can you describe what you are doing when you get the error? There could be something missing from the tutorial. A way around it would be to create a default value for P7_PREV_PAGE so that if it is not set, a default page will be used.
    -- Sharon

  • I am trying to sign in to attend a session and it says 'Invalid user or password. Please try again.' I have reset my password and it still doesn't work. I created a new AdobeID and it still doesn't work. I need to attend this training. How can I get in?

    I am trying to sign in to attend a session and it says 'Invalid user or password. Please try again.' I have reset my password and it still doesn't work. I created a new AdobeID and it still doesn't work. I need to attend this training. How can I get in?

    Sorry to hear about this problem. What site are you trying to log in on? Is it a Mozilla site? Usually you don't need to register or sign in to a Mozilla site to use Firefox. Usually you can just go straight to where you want to go.

  • My App store doesn´t work under my user. Everything is ok if I start with a guest user. I have a Yosemite MacBook Pro. How can I solve this? Because I'm unable to open the App Store, Mail, Contacts and so on. Please can you help me.

    My App store doesn´t work under my user. Everything is ok if I start with a guest user. I have a Yosemite MacBook Pro. How can I solve this? Because I'm unable to open the App Store, Mail, Contacts and so on. Please can you help me.

    Here it is. Hope that helps. Thank You.
    28/01/15 21:57:12,043 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    28/01/15 21:57:12,043 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d251b0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,044 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d25ec0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,046 App Store[1494]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.appstore/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,051 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c407a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,051 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c41440 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,053 CalendarAgent[1495]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.CalendarAgent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,056 com.apple.xpc.launchd[1]: (com.apple.ReportCrash[1497]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    28/01/15 21:57:12,427 com.apple.xpc.launchd[1]: (com.apple.appstore.18776[1494]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,472 ReportCrash[1497]: Saved crash report for App Store[1494] version 2.0 (376.6.2) to /Users/HV/Library/Logs/DiagnosticReports/App Store_2015-01-28-215712_MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,485 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/App%20Store_2015-01-27-212748_M acBook-Pro-de-HV.crash
    28/01/15 21:57:12,505 AddressBookSourceSync[1498]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    28/01/15 21:57:12,506 AddressBookSourceSync[1498]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    28/01/15 21:57:12,507 AddressBookSourceSync[1498]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
    *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  AddressBook                         0x00007fff8b99d3a1 +[ABAddressBook addressBookWithDatabaseDirectory:options:] + 54
      12  AddressBook                         0x00007fff8ba87370 -[PHXSource addressBook] + 146
      13  CardDAVPlugin                       0x00000001096cbfd0 -[PHXCardDAVSource addressBook] + 47
      14  AddressBookSourceSync               0x00000001075ca28e AddressBookSourceSync + 8846
      15  AddressBook                         0x00007fff8b9a4d2e __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
      16  CoreFoundation                      0x00007fff8943b385 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 133
      17  CoreFoundation                      0x00007fff8943aa89 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 313
      18  AddressBook                         0x00007fff8b9a4d04 -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 168
      19  AddressBook                         0x00007fff8b9a4c46 -[NSArray(ABArrayAdditions) _abMap:] + 91
      20  AddressBookSourceSync               0x00000001075ca05e AddressBookSourceSync + 8286
      21  AddressBookSourceSync               0x00000001075ca4fb AddressBookSourceSync + 9467
      22  libdyld.dylib                       0x00007fff933045c9 start + 1
      23  ???                                 0x0000000000000001 0x0 + 1
    28/01/15 21:57:12,606 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f369d0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,607 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f375a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,609 LaterAgent[1500]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.lateragent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,619 Problem Reporter[1499]: Failed to connect (_imageWell) outlet from (ProblemReportWindowController) to (NSImageView): missing setter or instance variable
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent[1495]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    28/01/15 21:57:12,713 ReportCrash[1497]: Saved crash report for CalendarAgent[1495] version 8.0 (316) to /Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215712_MacBoo k-Pro-de-HV.crash
    28/01/15 21:57:12,746 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215343 _MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,043 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    28/01/15 21:57:12,043 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d251b0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,044 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d25ec0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,046 App Store[1494]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.appstore/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,051 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c407a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,051 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c41440 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,053 CalendarAgent[1495]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.CalendarAgent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,056 com.apple.xpc.launchd[1]: (com.apple.ReportCrash[1497]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    28/01/15 21:57:12,427 com.apple.xpc.launchd[1]: (com.apple.appstore.18776[1494]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,472 ReportCrash[1497]: Saved crash report for App Store[1494] version 2.0 (376.6.2) to /Users/HV/Library/Logs/DiagnosticReports/App Store_2015-01-28-215712_MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,485 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/App%20Store_2015-01-27-212748_M acBook-Pro-de-HV.crash
    28/01/15 21:57:12,505 AddressBookSourceSync[1498]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    28/01/15 21:57:12,506 AddressBookSourceSync[1498]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    28/01/15 21:57:12,507 AddressBookSourceSync[1498]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
    *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  AddressBook                         0x00007fff8b99d3a1 +[ABAddressBook addressBookWithDatabaseDirectory:options:] + 54
      12  AddressBook                         0x00007fff8ba87370 -[PHXSource addressBook] + 146
      13  CardDAVPlugin                       0x00000001096cbfd0 -[PHXCardDAVSource addressBook] + 47
      14  AddressBookSourceSync               0x00000001075ca28e AddressBookSourceSync + 8846
      15  AddressBook                         0x00007fff8b9a4d2e __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
      16  CoreFoundation                      0x00007fff8943b385 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 133
      17  CoreFoundation                      0x00007fff8943aa89 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 313
      18  AddressBook                         0x00007fff8b9a4d04 -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 168
      19  AddressBook                         0x00007fff8b9a4c46 -[NSArray(ABArrayAdditions) _abMap:] + 91
      20  AddressBookSourceSync               0x00000001075ca05e AddressBookSourceSync + 8286
      21  AddressBookSourceSync               0x00000001075ca4fb AddressBookSourceSync + 9467
      22  libdyld.dylib                       0x00007fff933045c9 start + 1
      23  ???                                 0x0000000000000001 0x0 + 1
    28/01/15 21:57:12,606 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f369d0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,607 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f375a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,609 LaterAgent[1500]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.lateragent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,619 Problem Reporter[1499]: Failed to connect (_imageWell) outlet from (ProblemReportWindowController) to (NSImageView): missing setter or instance variable
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent[1495]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    28/01/15 21:57:12,713 ReportCrash[1497]: Saved crash report for CalendarAgent[1495] version 8.0 (316) to /Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215712_MacBoo k-Pro-de-HV.crash
    28/01/15 21:57:12,746 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215343 _MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,043 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    28/01/15 21:57:12,043 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d251b0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,044 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d25ec0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,046 App Store[1494]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.appstore/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,051 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c407a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,051 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c41440 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,053 CalendarAgent[1495]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.CalendarAgent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,056 com.apple.xpc.launchd[1]: (com.apple.ReportCrash[1497]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    28/01/15 21:57:12,427 com.apple.xpc.launchd[1]: (com.apple.appstore.18776[1494]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,472 ReportCrash[1497]: Saved crash report for App Store[1494] version 2.0 (376.6.2) to /Users/HV/Library/Logs/DiagnosticReports/App Store_2015-01-28-215712_MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,485 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/App%20Store_2015-01-27-212748_M acBook-Pro-de-HV.crash
    28/01/15 21:57:12,505 AddressBookSourceSync[1498]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    28/01/15 21:57:12,506 AddressBookSourceSync[1498]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    28/01/15 21:57:12,507 AddressBookSourceSync[1498]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
    *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  AddressBook                         0x00007fff8b99d3a1 +[ABAddressBook addressBookWithDatabaseDirectory:options:] + 54
      12  AddressBook                         0x00007fff8ba87370 -[PHXSource addressBook] + 146
      13  CardDAVPlugin                       0x00000001096cbfd0 -[PHXCardDAVSource addressBook] + 47
      14  AddressBookSourceSync               0x00000001075ca28e AddressBookSourceSync + 8846
      15  AddressBook                         0x00007fff8b9a4d2e __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
      16  CoreFoundation                      0x00007fff8943b385 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 133
      17  CoreFoundation                      0x00007fff8943aa89 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 313
      18  AddressBook                         0x00007fff8b9a4d04 -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 168
      19  AddressBook                         0x00007fff8b9a4c46 -[NSArray(ABArrayAdditions) _abMap:] + 91
      20  AddressBookSourceSync               0x00000001075ca05e AddressBookSourceSync + 8286
      21  AddressBookSourceSync               0x00000001075ca4fb AddressBookSourceSync + 9467
      22  libdyld.dylib                       0x00007fff933045c9 start + 1
      23  ???                                 0x0000000000000001 0x0 + 1
    28/01/15 21:57:12,606 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f369d0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,607 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f375a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,609 LaterAgent[1500]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.lateragent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,619 Problem Reporter[1499]: Failed to connect (_imageWell) outlet from (ProblemReportWindowController) to (NSImageView): missing setter or instance variable
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent[1495]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    28/01/15 21:57:12,713 ReportCrash[1497]: Saved crash report for CalendarAgent[1495] version 8.0 (316) to /Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215712_MacBoo k-Pro-de-HV.crash
    28/01/15 21:57:12,746 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215343 _MacBook-Pro-de-HV.crash
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.imfoundation.IMRemoteURLConnectionAgent): The _DirtyJetsamMemoryLimit key is not available on this platform.
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d251b0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d25ec0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV App Store[1494]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.appstore/ modes[1]=0700: Permission denied
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c407a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c41440 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV CalendarAgent[1495]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.CalendarAgent/ modes[1]=0700: Permission denied
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.ReportCrash[1497]): Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.appstore.18776[1494]): Service exited due to signal: Illegal instruction: 4
    Jan 28 21:57:12 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for App Store[1494] version 2.0 (376.6.2) to /Users/HV/Library/Logs/DiagnosticReports/App Store_2015-01-28-215712_MacBook-Pro-de-HV.crash
    Jan 28 21:57:12 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/App%20Store_2015-01-27-212748_M acBook-Pro-de-HV.crash
    Jan 28 21:57:12 MBP-de-HV.lan AddressBookSourceSync[1498]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    Jan 28 21:57:12 MBP-de-HV.lan AddressBookSourceSync[1498]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    Jan 28 21:57:12 MBP-de-HV.lan AddressBookSourceSync[1498]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
      *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  AddressBook                         0x00007fff8b99d3a1 +[ABAddressBook addressBookWithDatabaseDirectory:options:] + 54
      12  AddressBook                         0x00007fff8ba87370 -[PHXSource addressBook] + 146
      13  CardDAVPlugin                       0x00000001096cbfd0 -[PHXCardDAVSource addressBook] + 47
      14  AddressBookSourceSync               0x00000001075ca28e AddressBookSourceSync + 8846
      15  AddressBook                         0x00007fff8b9a4d2e __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
      16  CoreFoundation                      0x00007fff8943b385 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 133
      17  CoreFoundation                      0x00007fff8943aa89 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 313
      18  AddressBook                         0x00007fff8b9a4d04 -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 168
      19  AddressBook                         0x00007fff8b9a4c46 -[NSArray(ABArrayAdditions) _abMap:] + 91
      20  AddressBookSourceSync               0x00000001075ca05e AddressBookSourceSync + 8286
      21  AddressBookSourceSync               0x00000001075ca4fb AddressBookSourceSync + 9467
      22  libdyld.dylib                       0x00007fff933045c9 start + 1
      23  ???                                 0x0000000000000001 0x0 + 1
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f369d0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f375a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV LaterAgent[1500]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.lateragent/ modes[1]=0700: Permission denied
    Jan 28 21:57:12 MBP-de-HV.lan Problem Reporter[1499]: Failed to connect (_imageWell) outlet from (ProblemReportWindowController) to (NSImageView): missing setter or instance variable
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.CalendarAgent[1495]): Service exited due to signal: Illegal instruction: 4
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.CalendarAgent): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    Jan 28 21:57:12 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for CalendarAgent[1495] version 8.0 (316) to /Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215712_MacBoo k-Pro-de-HV.crash
    Jan 28 21:57:12 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215343 _MacBook-Pro-de-HV.crash
    Jan 28 21:57:13 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.lateragent[1500]): Service exited due to signal: Illegal instruction: 4
    Jan 28 21:57:13 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.lateragent): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    Jan 28 21:57:13 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for LaterAgent[1500] version ??? to /Users/HV/Library/Logs/DiagnosticReports/LaterAgent_2015-01-28-215713_MacBook-P ro-de-HV.crash
    Jan 28 21:57:13 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/LaterAgent_2015-01-28-215345_Ma cBook-Pro-de-HV.crash
    Jan 28 21:57:13 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.AddressBook.SourceSync[1498]): Service exited due to signal: Abort trap: 6
    Jan 28 21:57:13 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.AddressBook.SourceSync): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    Jan 28 21:57:13 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for AddressBookSourceSync[1498] version 9.0 (1563) to /Users/HV/Library/Logs/DiagnosticReports/AddressBookSourceSync_2015-01-28-21571 3_MacBook-Pro-de-HV.crash
    Jan 28 21:57:13 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/AddressBookSourceSync_2015-01-2 8-215344_MacBook-Pro-de-HV.crash
    Jan 28 21:57:14 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.imfoundation.IMRemoteURLConnectionAgent): The _DirtyJetsamMemoryLimit key is not available on this platform.
    Jan 28 21:57:14 MBP-de-HV.lan secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c34510 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:14 MBP-de-HV.lan secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c350c0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:14 MBP-de-HV soagent[1507]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.soagent/ modes[1]=0700: Permission denied
    Jan 28 21:57:14 --- last message repeated 1 time ---
    Jan 28 21:57:14 MBP-de-HV.lan soagent[1507]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    Jan 28 21:57:14 MBP-de-HV.lan soagent[1507]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    Jan 28 21:57:14 MBP-de-HV.lan soagent[1507]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
      *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  IMCore                              0x00007fff9509b80b IMTranscriptChatItemEqual + 176400
      12  libdispatch.dylib                   0x00007fff93103c13 _dispatch_client_callout + 8
      13  libdispatch.dylib                   0x00007fff93103b26 dispatch_once_f + 117
      14  IMCore                              0x00007fff950524eb OBJC_METACLASS_$_IMSPIMessage + 455538043
      15  IMCore                              0x00007fff95087650 IMTranscriptChatItemEqual + 94037
      16  libdispatch.dylib                   0x00007fff93103c13 _dispatch_client_callout + 8
      17  libdispatch.dylib                   0x00007fff93103b26 dispatch_once_f + 117
      18  IMCore                              0x00007fff95086964 IMTranscriptChatItemEqual + 90729
      19  IMCore                              0x00007fff9508827b IMTranscriptChatItemEqual + 97152
      20  IMCore                              0x00007fff95052f76 OBJC_METACLASS_$_IMSPIMessage + 455540742
      21  IMCore                              0x00007fff9508a88f IMTranscriptChatItemEqual + 106900
      22  CoreFoundation                      0x00007fff894648a6 ___forwarding___ + 518
      23  CoreFoundation                      0x00007fff89464618 _CF_forwarding_prep_0 + 120
      24  IMCore                              0x00007fff95088146 IMTranscriptChatItemEqual + 96843
      25  IMCore                              0x00007fff9508843e IMTranscriptChatItemEqual + 97603
      26  IMCore                              0x00007fff950885fc IMTranscriptChatItemEqual + 98049
      27  IMCore                              0x00007fff9508887d IMTranscriptChatItemEqual + 98690
      28  MessagesHelperKit                   0x0000000101661dae MessagesHelperKit + 7598
      29  libdispatch.dylib                   0x00007fff93103c13 _dispatch_client_callout + 8
      30  libdispatch.dylib                   0x00007fff93103b26 dispatch_once_f + 117
      31  libobjc.A.dylib                     0x00007fff8a6f41b5 _class_initialize + 649
      32  libobjc.A.dylib                     0x00007fff8a6f3f7f _class_initialize + 83
      33  libobjc.A.dylib                     0x00007fff8a704777 lookUpImpOrForward + 322
      34  libobjc.A.dylib                     0x00007fff8a6ee1ac objc_msgSend + 236
      35  Foundation                          0x00007fff8de18669 -[NSBundle loadAndReturnError:] + 693
      36  MessagesHelperKit                   0x0000000101664045 MessagesHelperKit + 16453
      37  libdispatch.dylib                   0x00007fff93108323 _dispatch_call_block_and_release + 12
      38  libdispatch.dylib                   0x00007fff93103c13 _dispatch_client_callout + 8
      39  libdispatch.dylib                   0x00007fff9310fcbf _dispatch_main_queue_callback_4CF + 861
      40  CoreFoundation                      0x00007fff8946dc79 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
      41  CoreFoundation                      0x00007fff8942a30f __CFRunLoopRun + 2159
      42  CoreFoundation                      0x00007fff89429858 CFRunLoopRunSpecific + 296
      43  Foundation                          0x00007fff8de43849 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
      44  Foundation                          0x00007fff8df3f24f -[NSRunLoop(NSRunLoop) run] + 74
      45  soagent                             0x0000000101656be5 soagent + 3045
      46  libdyld.dylib                       0x00007fff933045c9 start + 1
    Jan 28 21:57:14 MBP-de-HV com.apple.xpc.launchd[1] (com.amazon.music[1506]): Service exited with abnormal code: 1
    Jan 28 21:57:14 MBP-de-HV com.apple.xpc.launchd[1] (com.amazon.music): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    Jan 28 21:57:14 MBP-de-HV.lan com.apple.dock.extra[288]: SOHelperCenter main connection interrupted
    Jan 28 21:57:14 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.soagent[1507]): Service exited due to signal: Abort trap: 6
    Jan 28 21:57:14 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for soagent[1507] version ??? to /Users/HV/Library/Logs/DiagnosticReports/soagent_2015-01-28-215714_MacBook-Pro- de-HV.crash
    Jan 28 21:57:14 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/soagent_2015-01-28-215346_MacBo ok-Pro-de-HV.crash

  • Oracle client 9i doesn't work for windows ordinary user

    Hello All,
    I've installed oracle 9i client on windows xp. Client software works for user belonging to windows administrators group. it doesn't works for ordinary users not belonging to administrators group. Particularly when i run sqlplus from command line i get following error :
    Incorrect environment variable PLUS_DFLT
    Program execution error.
    i also need access to Oracle ODBC driver.
    When i try to configure ODBC source (created by user with administrator privileges) by common user i get following errors :
    The setup routines for Oracle for Oracle in OraHome9i ODBC driver couldn't be loaded due to system error code 5
    Could not load the setup or translator library
    Very appreciate for any help.
    Regards Arkadiusz Masny

    It sounds like the users on the machine do not have access to the Oracle home directory. Check the permissions of the folder by right properties, select the user and check that they have read and then select advanced. Tick the "replace permission entries....." box and apply. This will re apply all user rights in all folders and subfolders. Try again.
    HTH Mark F

Maybe you are looking for

  • For Loop not acting correctly...

    Hi everyone, I have this For Loop in JavaScript which is not working correctly and I really have no idea why it is acting like so... I don't if anyone has already encountered this issue and I'd like to know if there's a fix for this or what am I doin

  • Specifying custom fonts in captions

    In the fonts.ini file in the gallery\captions folder, you can modify the default font use in a caption. The problem is that I can't seem to to use any font with a space in its name. For example, single words like Arial, Times, Verdana, Trebuchet, and

  • Spry Dropdown Menu properties hidden

    I am trying to create a spry dropdown menu but cannot see the light blue menu thing that you click on to edit the spry menu, and so therefore cannot edit it. It should pop up when you hover over the spry menu in design view but I get nothing. Please

  • ITunes displays incorrectly, unstable...

    I just upgraded to 6.0, and now I'm having a strange display issue. See this screenshot: http://img.photobucket.com/albums/v498/Peloria/itunesdisplay.jpg Minimizing/Maximizing the window makes no difference. The upper menu is there (I can access it u

  • Make Quit close the application

    Kinda new to my MBP w/ Lion installed.  I'm wondering if there is a setting one can chose to completely close an application when the red dot is clicked.  Right now they are still appearing to be loaded into memroy (guessing that is what is happening