Systemd Boot Problem - Times out waiting for LVM partitions

At first I had a problem in which the initramfs didn't map LVM partitions to /dev/vg0/lv, only /dev/mapper/vg0-lv. I changed /dev/vg0/root to /dev/mapper/vg0-root in bootloader configuration as a hacky workaround.
Getting closer to a working system, systemd failed boot because my fstab entries are uuids, and for some reason, my LVM volumes aren't showing up in /dev/disk/by-*. My flash drive boot partition shows up in there though.
I replaced the uuids with /dev/mapper/vg0-* and tried again. Now my boot fails with this:
Oct 21 19:19:31 archserver systemd[1]: Job dev-mapper-vg0\x2dmedia.device/start timed out.
Oct 21 19:19:31 archserver systemd[1]: Timed out waiting for device dev-mapper-vg0\x2dmedia.device.
Oct 21 19:19:31 archserver systemd[1]: Dependency failed for /mnt/media.
Oct 21 19:19:31 archserver systemd[1]: Dependency failed for Local File Systems.
Boot log: http://sprunge.us/LEhG
mkinitcpio.conf: http://sprunge.us/QEBK
What should I do?

This may be LVM's incompatibility with anything hotplug (it may not be, your issue sounds more obscure). You need to create your own, local lvm service file. I'll tell you how. This is /usr/lib/systemd/system/lvm.service:
[Unit]
Description=LVM activation
DefaultDependencies=no
Requires=systemd-udev-settle.service
After=systemd-udev-settle.service
Before=basic.target shutdown.target
Conflicts=shutdown.target
[Service]
ExecStart=/sbin/vgchange --available y
Type=oneshot
TimeoutSec=0
RemainAfterExit=yes
[Install]
WantedBy=basic.target
Create /etc/systemd/system/lvm_local.service:
[Unit]
Description=LVM activation
DefaultDependencies=no
Requires=dev-something-something1.device
After=dev-something-something1.device
Requires=dev-something-something2.device
After=dev-something-something2.device
Before=basic.target shutdown.target
Conflicts=shutdown.target
[Service]
ExecStart=/sbin/vgchange --available y
Type=oneshot
TimeoutSec=0
RemainAfterExit=yes
[Install]
WantedBy=basic.target
No, what to you put in those "something-something1" places above? For each LVM physical volume, run 'systemctl status /dev/disk/by-uuid/$UUID' where $UUID is the UUID of your physical volume. You'll get a status output showing the exact name of the correct .device unit. Then 'systemctl enable lvm_local.service'.
This speeds up boot and makes sure lvm is properly initialized. After writing all this, I am unsure if this is at all related to your problem, as your volume group is activated in initramfs and the links should be set up by udev.

Similar Messages

  • [solved] systemd times out waiting for dev-null.device on encrypted fs

    I have a relatively new install of Arch on my laptop. The relevant sections of the drive setup are a luks encrypted root device (with associated unencrypted /boot), and a large ntfs device encrypted with truecrypt. That contains my home directory, which is shared with the Windows 8 dual-boot on the machine.
    I have all this mounted on boot, so my typical usage is to enter my password for the encrypted root, followed by the password for the truecrypt-encrypted data drive, then normal login.
    This has been working fine for a couple of weeks. This afternoon I rebooted my machine from Windows to Linux, at which point the secondary encrypted drive failed to mount. The root device mounts fine.
    On further examination, in the form of journalctl -xb, I'm getting the following errors after mounting the encrypted root device:
    Feb 12 21:29:54 kafka systemd[1]: Job dev-null.device/start timed out.
    Feb 12 21:29:54 kafka systemd[1]: Timed out waiting for device dev-null.device.
    -- Subject: Unit dev-null.device has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/li … temd-devel
    -- Documentation: http://www.freedesktop.org/wiki/Softwar … e9d022f03d
    -- Unit dev-null.device has failed.
    -- The result is timeout.
    Feb 12 21:29:54 kafka systemd[1]: Dependency failed for Cryptography Setup for cryptdata.
    -- Subject: Unit [email protected] has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/li … temd-devel
    -- Documentation: http://www.freedesktop.org/wiki/Softwar … e9d022f03d
    -- Unit [email protected] has failed.
    As my root home directory is on the root filesystem, I can still log in as root. If I try to mount or unmount the truecrypt device (located at /data) the command hangs. After removing "auto,x-systemd.automount" from that device from /etc/fstab and rebooting, I have a significant delay at boot, but I can then mount the /data device as normal.
    I can't find anything related to this either here or on Google. Any ideas?
    Last edited by tealeaf (2014-02-13 12:01:55)

    WonderWoofy wrote:A bit OT, but I just want to mention that having your $HOME on ntfs is probably not the best idea either.  It may work, but because it is not a POSIX compliant filesystem, there is a good chance you might run into some issues.
    Thanks for the warning. Sadly, as there are applications I need for work that only run in Windows, I need to dual boot this machine with Windows 8.1. This is the best option I can find for sharing my home directory, which is also a necessity due to the amount of data I have to share between the systems. I would much rather trust to ntfs-3g-ar and its UserMapping (and all the fiddling with ACLs that I had to do) than to the Windows ext2 drivers I can find. They all seem to be several years out of date. Linux is much better at talking NTFS than Windows is at talking EXT. (To be honest, I'm actually quite impressed with Windows 8 since the upgrade to 8.1. As a long term Arch user and a fan of tiling window managers it's interesting to see Windows moving in the right direction. )
    With 'permissions' in the /etc/fstab and the .NTFS-3G/UserMapping file in place it works almost seamlessly. (It took a lot of tinkering with ACLs in Windows and Linux, but it's working very well now. One tip that I'll write here in case it's of use is that you want the last line of the UserMapping file to be a 'generic' mapping. When I didn't have that there were very strange things going on.)
    The only two minor problems I have now are:
    1) A few applications don't like FUSE filesystems. Steam worked for a while and then broke; reinstalling it failed at every stage. When I checked, it seems that FUSE is a known problem for Steam. (I don't think it's restricted to NTFS.) My response to that was to create /home/.local/$HOME on my root (ext4) filesystem and symlink out to it for troublesome applications.
    2) There are a few characters for filenames that Windows doesn't like, making those files inaccessible in Windows. (Colons are the major culprit.) They're usually quite easily renamed. (The exception being my .maildir folder, which I have had to duplicate natively in cygwin.)
    Neither of these are anything more than minor niggles. I appreciate the warning, though.
    Having said that, if you have an alternative that lets me share a truecrypt-encrypted drive between Linux and Windows that is better than the NTFS-3G approach, I'd love to hear it for future reference.

  • [SOLVED] dmraid "Timed out waiting for device" at boot

    Created a bug report with solution proposal: https://bugs.archlinux.org/task/33166
    I created a virtual machine to demonstrate the problem
    https://docs.google.com/open?id=0B40Hp1 … WZUQ21xZk0
    The root and the other mount points are all on one raid disk. Although the root mounts quickly, other mount points cause timeouts at boot time.
    dmraid prints that all /dev/mapper/isw_* devices are created.
    I think /dev/disk/by-uuid/* links are created too, but for some reason systemd doesn't see them.
    After boot I can execute "mount -a" without errors.
    here's my fstab:
    tmpfs /tmp tmpfs nodev,nosuid 0 0
    UUID=e89249d8-49a5-415b-8f9b-97de5cfbe82d / ext3 defaults
    UUID=c37f8bdd-3d6c-495f-bf8a-5ef059e55254 swap swap defaults 0 0
    UUID=91988343-dd89-43b9-8975-babb0b9510a2 /media/ARCHLINUXNEW ext4 nofail 0 1
    UUID=62C813E9C813B9ED /media/distrpart ntfs-3g rw,nofail
    UUID=E0A1-D623 /media/realboot vfat rw,codepage=866,iocharset=utf8,umask=002,noatime,nofail
    # journalctl -b
    Dec 15 00:25:24 localhost kernel: firewire_core 0000:05:03.0: created device fw0: GUID 0011d800017a5dd7, S400
    Dec 15 00:26:50 localhost systemd[1]: Job dev-disk-by\x2duuid-E0A1\x2dD623.device/start timed out.
    Dec 15 00:26:50 localhost systemd[1]: Timed out waiting for device dev-disk-by\x2duuid-E0A1\x2dD623.device.
    Dec 15 00:26:50 localhost systemd[1]: Dependency failed for /media/realboot.
    Dec 15 00:26:50 localhost systemd[1]: Job media-realboot.mount/start failed with result 'dependency'.
    Dec 15 00:26:50 localhost systemd[1]: Job dev-disk-by\x2duuid-E0A1\x2dD623.device/start failed with result 'timeout'.
    Dec 15 00:26:50 localhost systemd[1]: Job dev-disk-by\x2duuid-62C813E9C813B9ED.device/start timed out.
    Dec 15 00:26:50 localhost systemd[1]: Timed out waiting for device dev-disk-by\x2duuid-62C813E9C813B9ED.device.
    Dec 15 00:26:50 localhost systemd[1]: Dependency failed for /media/distrpart.
    Dec 15 00:26:50 localhost systemd[1]: Job media-distrpart.mount/start failed with result 'dependency'.
    Dec 15 00:26:50 localhost systemd[1]: Job dev-disk-by\x2duuid-62C813E9C813B9ED.device/start failed with result 'timeout'.
    Dec 15 00:26:50 localhost systemd[1]: Job dev-disk-by\x2duuid-91988343\x2ddd89\x2d43b9\x2d8975\x2dbabb0b9510a2.device/start timed out.
    Dec 15 00:26:50 localhost systemd[1]: Timed out waiting for device dev-disk-by\x2duuid-91988343\x2ddd89\x2d43b9\x2d8975\x2dbabb0b9510a2.device.
    Dec 15 00:26:50 localhost systemd[1]: Dependency failed for /media/ARCHLINUXNEW.
    Dec 15 00:26:50 localhost systemd[1]: Job media-ARCHLINUXNEW.mount/start failed with result 'dependency'.
    Dec 15 00:26:50 localhost systemd[1]: Dependency failed for File System Check on /dev/disk/by-uuid/91988343-dd89-43b9-8975-babb0b9510a2.
    Dec 15 00:26:50 localhost systemd[1]: Job systemd-fsck@dev-disk-by\x2duuid-91988343\x2ddd89\x2d43b9\x2d8975\x2dbabb0b9510a2.service/start failed with result 'dependency
    Dec 15 00:26:50 localhost systemd[1]: Job dev-disk-by\x2duuid-91988343\x2ddd89\x2d43b9\x2d8975\x2dbabb0b9510a2.device/start failed with result 'timeout'.
    Dec 15 00:26:50 localhost systemd[1]: Dependency failed for /dev/disk/by-uuid/c37f8bdd-3d6c-495f-bf8a-5ef059e55254.
    Dec 15 00:26:50 localhost systemd[1]: Reached target Swap.
    Note the 1.5 minute pause
    # mount | grep /dev/mapper
    /dev/mapper/isw_ebaifefjbf_Volume0p9 on / type ext3 (rw,relatime,stripe=64,data=ordered)
    /dev/mapper/isw_ebaifefjbf_Volume0p1 on /media/realboot type vfat (rw,noatime,fmask=0002,dmask=0002,allow_utime=0020,codepage=cp866,iocharset=utf8,shortname=mixed,errors=remount-ro)
    /dev/mapper/isw_ebaifefjbf_Volume0p8 on /media/ARCHLINUXNEW type ext4 (rw,relatime,stripe=64,data=ordered)
    /dev/mapper/isw_ebaifefjbf_Volume0p5 on /media/distrpart type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
    Last edited by leniviy (2012-12-22 16:06:25)

    I've ran into exactly same problem lately, but finally solved it.
    Setup: Intel Fake RAID, mirror, partitioned as:
    /dev/mapper/isw_dfjeffgfaj_rootvol1 /boot
    /dev/mapper/isw_dfjeffgfaj_rootvol2 /
    /dev/mapper/isw_dfjeffgfaj_rootvol3 /home (dm-crypted)
    In /etc/fstab i had following mountpoints:
    # file /etc/fstab
    /dev/mapper/isw_dfjeffgfaj_rootvolp2 / ext4 rw,relatime,data=ordered 0 1
    /dev/mapper/isw_dfjeffgfaj_rootvolp1 /boot ext4 rw,relatime,data=ordered 0 2
    and boot hung on waiting for /dev/mapper/isw_dfjeffgfaj_rootvolp1. Solution involves changing dev path to UUID:
    # file /etc/fstab
    /dev/mapper/isw_dfjeffgfaj_rootvolp2 / ext4 rw,relatime,data=ordered 0 1
    UUID=44809529-11d9-4f53-9652-7b97ed077225 /boot ext4 rw,relatime,data=ordered 0 2
    For some reason symlinks /dev/mapper/isw* are not present during systemd mount.

  • Problem description: My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to

    Problem description:
    My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to get the problem to alleviate for a few days?
    EtreCheck version: 2.1.8 (121)
    Report generated February 16, 2015 at 2:35:55 PM PST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 11 days 19:34:2
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 60.76 GB (15.30 GB free)
            Macintosh HD (disk1) / : 438.11 GB (351.62 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 438.49 GB Online
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        hp officejet 4200 series
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.accountsd.plist
        [killed]    com.apple.AirPlayUIAgent.plist
        [killed]    com.apple.bird.plist
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.coreservices.uiagent.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.pluginkit.pkd.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.recentsd.plist
        [killed]    com.apple.secd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.spindump_agent.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        19 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.coresymbolicationd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.diagnosticd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.iconservices.iconservicesd.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-monthly.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.sandboxd.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.spindump.plist
        [killed]    com.apple.tccd.system.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    com.apple.xpc.smd.plist
        20 processes killed due to memory pressure
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.GoodShop.updater.plist [Click for support]
    User Login Items: ℹ️
        None
    Internet Plug-ins: ℹ️
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        Google Earth Web Plug-in: Version: 5.2 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.2.4 [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        DivXBrowserPlugin: Version: 2.0 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.79 [Click for support]
        VSeeHelper: Version: VSeeHelper 1.0.0.0 - SDK 10.8 [Click for support]
    Safari Extensions: ℹ️
        avast! Online Security
        Goodshop app
    3rd Party Preference Panes: ℹ️
        DivX  [Click for support]
        Flip4Mac WMV  [Click for support]
        MacFUSE  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 438.11 GB Disk used: 86.50 GB
        Destinations:
            Backup [Local]
            Total size: 159.70 GB
            Total number of backups: 3
            Oldest backup: 2014-11-24 05:20:18 +0000
            Last backup: 2015-02-01 03:04:02 +0000
            Size of backup disk: Too small
                Backup size 159.70 GB < (Disk used 86.50 GB X 3)
    Top Processes by CPU: ℹ️
             8%    WindowServer
             5%    DashboardClient
             3%    mds
             2%    launchd
             0%    ocspd
    Top Processes by Memory: ℹ️
        64 MB    WindowServer
        52 MB    thunderbird
        34 MB    mds
        34 MB    Mail
        30 MB    mds_stores
    Virtual Memory Information: ℹ️
        654 MB    Free RAM
        834 MB    Active RAM
        777 MB    Inactive RAM
        903 MB    Wired RAM
        102.49 GB    Page-ins
        1.46 GB    Page-outs
    Diagnostics Information: ℹ️
        Standard users cannot read /Library/Logs/DiagnosticReports.
        Run as an administrator account to see more information.

    Hi Linc!  Sorry for the delay.  Here is the information:
    Start time: 16:48:08 02/28/15
    Revision: 1241
    Model Identifier: iMac10,1
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 10 days 21:04
    UID: 502
    SerialATA
        ST*******ASQ                          
    USB
        officejet 4200 series (Hewlett Packard)
    Bluetooth
        Apple Wireless Mouse
    FileVault 2: On FileVault master keychain appears to be installed
    FileVault 1: On
    I/O wait time (ms/s)
        launchd (UID 0): 53
    Font issues: 40
    Firewall: On
    System caches/logs
        1987 MB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-01-31 SecurityAgent crash
        2015-02-01 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-02-01 IMDPersistenceAgent crash
        2015-02-01 secd crash
        2015-02-20 Inkjet7 crash
        2015-02-28 IMDPersistenceAgent crash
        2015-02-28 secd crash x2
    Kernel log
        Feb 23 07:06:08 Failed to get hibernate image filename
        Feb 23 17:07:05 Failed to get hibernate image filename
        Feb 24 07:06:05 Failed to get hibernate image filename
        Feb 24 17:47:13 Failed to get hibernate image filename
        Feb 24 18:31:50 IOAudioStream[0xffffff802df40400]::clipIfNecessary() - Error: counted 1 clip more than one buffer ahead errors.
        Feb 24 19:14:41 Failed to get hibernate image filename
        Feb 24 20:56:40 Failed to get hibernate image filename
        Feb 24 22:14:14 Failed to get hibernate image filename
        Feb 24 22:38:31 Failed to get hibernate image filename
        Feb 25 06:58:23 Failed to get hibernate image filename
        Feb 25 17:40:53 Failed to get hibernate image filename
        Feb 25 21:04:27 Failed to get hibernate image filename
        Feb 25 21:31:52 Failed to get hibernate image filename
        Feb 26 07:03:06 Failed to get hibernate image filename
        Feb 26 17:06:59 Failed to get hibernate image filename
        Feb 27 06:58:56 Failed to get hibernate image filename
        Feb 27 17:02:56 Failed to get hibernate image filename
        Feb 27 19:17:20 Failed to get hibernate image filename
        Feb 27 23:04:12 Failed to get hibernate image filename
        Feb 28 10:09:19 Failed to get hibernate image filename
        Feb 28 13:07:21 Failed to get hibernate image filename
        Feb 28 14:08:38 Failed to get hibernate image filename
        Feb 28 15:11:16 Failed to get hibernate image filename
        Feb 28 16:18:21 msdosfs_fat_uninit_vol: error 6 from msdosfs_fat_cache_flush
        Feb 28 16:29:32 Failed to get hibernate image filename
    System log
            label = "2.5.4.3";
            "localized label" = "2.5.4.3";
            type = string;
            value = "courier.sandbox.push.apple.com";
        Feb 28 16:30:55 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
        Feb 28 16:31:09 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8424]
        Feb 28 16:31:44 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8433]
        Feb 28 16:32:36 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:34:16 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:37 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "1Password mini" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:46:20 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8979]
        Feb 28 16:49:02 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
    Daemons
        com.apple.AccountPolicyHelper
        com.apple.AssetCacheLocatorService
        com.apple.CodeSigningHelper
        com.apple.MobileFileIntegrity
        com.apple.awdd
        com.apple.backupd-auto
        com.apple.cache_delete
        com.apple.coresymbolicationd
        com.apple.ctkd
        com.apple.diagnosticd
        com.apple.emond.aslmanager
        com.apple.iconservices.iconservicesagent
        com.apple.iconservices.iconservicesd
        com.apple.ifdreader
        com.apple.installd
        com.apple.installer.osmessagetracing
        com.apple.nehelper
        com.apple.networkd_privileged
        com.apple.nsurlsessiond_privileged
        com.apple.nsurlstoraged
        com.apple.periodic-daily
        com.apple.periodic-monthly
        com.apple.periodic-weekly
        com.apple.sandboxd
        com.apple.secinitd
        com.apple.security.syspolicy
        - status: -15
        com.apple.softwareupdate_download_service
        com.apple.softwareupdated
        com.apple.spindump
        com.apple.sysmond
        com.apple.systemstatsd
        com.apple.tccd.system
        com.apple.watchdogd
        com.apple.wdhelper
        org.cups.cupsd
    Agents
        2BUA8C4S2C.com.agilebits.onepassword4-helper
        com.adobe.ARM.UUID
        com.apple.AirPortBaseStationAgent
        com.apple.imdpersistence.IMDPersistenceAgent
        - status: -10
        com.apple.secd
        - status: -10
    User crontab
        59 16 * * 7 /Applications/MacScan\ 2/MacScan.app/Contents/MacOS/MacScan -autoscan YES
    Firefox extensions
        Mozilla Firefox hotfix
    Widgets
        iCal
    iCloud errors
        cloudd 7
        comapple.InputMethodKit.UserDictionary 2
        CallHistorySyncHelper 1
    Continuity errors
        sharingd 1
    Restricted files: 174
    Lockfiles: 30
    High file counts
        Desktop: 54
    Accessibility
        Scroll Zoom: On
    Contents of /System/Library/Security/authorization.plist
        - mod date: Oct  9 02:17:00 2014
        - checksum: 2720110640
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1850 more line(s)
    Contents of /private/etc/authorization.deprecated
        - mod date: Oct 25 13:37:39 2014
        - checksum: 842352627
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1013 more line(s)
    Contents of /private/etc/pam.d/prl_disp_service
        - mod date: Mar  5 03:24:01 2010
        - checksum: 1160556194
        auth       required       pam_nologin.so
        auth       optional       pam_afpmount.so
        auth       sufficient     pam_securityserver.so nullok
        auth       sufficient     pam_unix.so  nullok
        auth       required       pam_deny.so
        account    required       pam_permit.so
        password   required       pam_deny.so
        session    required       pam_permit.so
        session    optional       pam_afpmount.so
    Contents of /private/etc/pam.d/prl_disp_service.snow_leopard
        - mod date: Mar  5 03:24:01 2010
        - checksum: 2633576920
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Aug  1 17:37:19 2012
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Applications
        /Applications/Acrobat 6.0 Professional/Acrobat 6.0.2 Professional.app
        - N/A
        /Applications/Acrobat 6.0 Professional/Acrobat Distiller 6.0.2.app
        - com.adobe.distiller
        /Applications/Adobe/Acrobat.com.app
        - com.adobe.mauby.UUID.1
        /Applications/Adobe/Adobe Help.app
        - chc.UUID.1
        /Applications/Bible Explorer 4.app
        - com.BE8.wordsearchbible.corp
        /Applications/DivX Converter.app
        - N/A
        /Applications/DivX Player.app
        - com.divx.DivX_Player
        /Applications/DivX/DivX Community.app
        - com.spritec.DVD
        /Applications/DivX/DivX Products.app
        - com.spritec.DVD
        /Applications/DivX/DivX Support.app
        - com.spritec.DVD
        /Applications/DivX/Uninstall DivX for Mac.app
        - com.divxinc.uninstalldivxformac
        /Applications/FOX News Live.app
        - FoxPlayerAIR.UUID.1
        /Applications/Flip4Mac/WMV Player.app
        - net.telestream.wmv.player
        /Applications/Garmin Express.app
        - com.garmin.renu.client
        /Applications/Garmin WebUpdater.app
        - com.garmin.WebUpdater
        /Applications/Hewlett-Packard/HP Image Edit.app
        - com.hp.hpimageedit
        /Applications/Hewlett-Packard/HP Image Print.app
        - com.hp.photo.imageprint
        /Applications/Hewlett-Packard/HP Image Zone.app
        - com.hp.imagezone
        /Applications/Hewlett-Packard/HP Instant Share.app
        - com.hp.photo.instantshare
        /Applications/Hewlett-Packard/HP Panorama Stitching.app
        - com.hp.PanoramaStitching
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP E-mail Portal/HP E-mail Portal
        - N/A
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP Photo and Imaging Director/Director Docker.app
        - com.hp.director.docker
        /Applications/Hewlett-Packard/HP Software Update.app
        - com.hp.softwareupdate
        /Applications/Hewlett-Packard/HP Uninstaller
        - N/A
        /Applications/Karaoke Maker/Audacity.app
        - net.sourceforge.audacity
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute
        - com.macromedia.Contribute
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute/Contents/MacOS/Contribute
        - N/A
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8
        - com.macromedia.Dreamweaver
        /Applications/Macromedia Studio 8/Macromedia Extension Manager/Extension Manager.app
        - com.macromedia.ExtensionManager
        /Applications/Macromedia Studio 8/Macromedia Fireworks 8/Fireworks 8.app
        - com.macromedia.fireworks
        /Applications/Macromedia Studio 8/Macromedia Flash 8 VideoEncoder/Flash 8 Video Encoder.app
        - com.macromedia.FLVEncoder
        /Applications/Macromedia Studio 8/Macromedia Flash 8/Flash 8.app
        - com.macromedia.flash.8
        /Applications/Microsoft AutoUpdate.app
        - com.microsoft.autoupdate
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer
        - com.MindVision.VISEX
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer/Contents/MacOSClassic/Handheld Sync Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Microsoft Language Register/Microsoft Language Register
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remote Desktop Connection/Remote Desktop Connection
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remove Office/Remove Office
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer/Contents/MacOS/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/MSN Messenger.app
        - Microsoft/com.microsoft.Messenger
        /Applications/Microsoft Office 2004/Microsoft Entourage
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Excel
        - N/A
        /Applications/Microsoft Office 2004/Microsoft PowerPoint
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Word
        - N/A
        /Applications/Microsoft Office 2004/Office/Alerts Daemon.app
        - Microsoft/com.microsoft.AlertsDaemon
        /Applications/Microsoft Office 2004/Office/Database Utility
        - N/A
        /Applications/Microsoft Office 2004/Office/Equation Editor
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Cert Manager.app
        - com.microsoft.certmgr
        /Applications/Microsoft Office 2004/Office/Microsoft Clip Gallery
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Database Daemon
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Error Reporting.app
        - com.microsoft.error_reporting
        /Applications/Microsoft Office 2004/Office/Microsoft Graph
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Office Notifications
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Query
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Sync Services.app
        - com.microsoft.entourage.syncservices
        /Applications/Microsoft Office 2004/Office/Organization Chart
        - N/A
        /Applications/Microsoft Office 2004/Office/Project Gallery Launcher
        - N/A
        /Applications/Open XML Converter.app
        - com.microsoft.OfficeConverter
        /Applications/OpenOffice.app
        - org.openoffice.script
        /Applications/Quicken 2007/Quicken 2007
        - com.intuit.quicken
        /Applications/Quicken 2007/Quicken 2007/Contents/MacOS/Quicken 2007
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer
        - com.intuit.ero
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer/Contents/MacOSClassic/Emergency Records Organizer
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Home Inventory.app
        - com.intuit.HomeInventory
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Backup Utility.app
        - com.intuit.quicken.dotmac
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Scheduler
        - N/A
        /Applications/RealPlayer Converter.app
        - com.real.converter
        /Applications/RealPlayer.app
        - com.RealNetworks.RealPlayer
        /Applications/TorBrowser.app
        - N/A
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe Utilities.localized/Adobe Updater6/Adobe Updater.app
        - "com.Adobe.ESD.AdobeUpdaterApplication"
        /Library/Application Support/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /Library/Application Support/DivX/DivXUpdater.app
        - com.divx.DivXUpdater
        /Library/Application Support/Hewlett-Packard/Software Update/HP Rules Processor.app
        - com.hp.rulesprocessor
        /Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app
        - com.hp.HPScheduler
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater
        - N/A
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater/Contents/MacOS/HP Software Updater
        - N/A
        /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
        - com.microsoft.helpviewer
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Charts.app
        - com.microsoft.openxml.chartconverter.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
        - com.microsoft.openxml.excel.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.app
        - com.microsoft.openxml.word.app
        /Library/Application Support/Microsoft/Office Converter Support/pptfc.app
        - com.microsoft.openxml.powerpoint.app
        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        - com.microsoft.silverlight.sllauncher
        /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app
        - com.apple.ScriptEditor.id.cocoa-applet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app
        - com.apple.ScriptEditor.id.droplet-with-settable-properties-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app
        - com.apple.ScriptEditor.id.file-processing-droplet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app
        - com.apple.ScriptEditor.id.image-file-processing-droplet-template
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/flashplayer
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_burn_cd.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_export_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_import_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_panorama_stitch.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_folders.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_edit.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_print.app
        - N/A
        /Library/Documentation/User Guides and Information.localized/Apple Hardware Test Read Me.app
        - com.apple.AppleHardwareTestReadMe
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.Template
        /Library/Image Capture/Scripts/Import and View with iPhoto.app
        - com.hp.iPhoto.icautotask
        /Library/Parallels/Parallels Mounter.app
        - com.parallels.server.mounter
        /Library/Printers/hp/Fax/fax.backend
        - com.hp.fax
        /Library/Printers/hp/Fax/rastertofax.filter
        - com.hp.rastertofax
        /Library/Printers/hp/cups/filters/commandtohp.filter
        - com.hp.print.cups.filter.commandtohp
        /Library/Printers/hp/cups/filters/pdftopdf.filter
        - com.hp.print.cups.filter.pdftopdf
        /Library/Printers/hp/cups/tools/autosetup.tool
        - com.hp.print.autosetup
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_bepbmhgboaologfdajaanbcjmnhjmhfn/Default bepbmhgboaologfdajaanbcjmnhjmhfn.app
        - com.google.Chrome.app.Default-bepbmhgboaologfdajaanbcjmnhjmhfn-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_blpcfgokakmgnkcojhhkbfbldkacnbeo/Default blpcfgokakmgnkcojhhkbfbldkacnbeo.app
        - com.google.Chrome.app.Default-blpcfgokakmgnkcojhhkbfbldkacnbeo-internal
        /Users/USER/Library/Caches/com.adobe.Reader.ARM/UUID/Adobe Reader Updater.app
        - com.adobe.ARM
        /mike's old computer/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /mike's old computer/Adobe/Installers/R2/Setup.app
        - com.adobe.Installers.Setup
        /mike's old computer/Deimos Rising/Deimos Rising
        - N/A
        /mike's old computer/IA_Installers/TypingMaster_for_Mac/TypingMasterMac.app
        - N/A
        /mike's old computer/TypingMasterMac/UninstallerData/Uninstall TypingMaster for Mac.app
        - N/A
        /mike's old computer/TypingMasterMac/itutoreng.app
        - N/A
        /mike's old computer/adobe applications/Adobe GoLive CS/Adobe GoLive CS.app
        - com.adobe.GoLive
        /mike's old computer/adobe applications/Adobe Illustrator CS/2.app
        - com.adobe.illustrator
        /mike's old computer/adobe applications/Adobe InDesign CS/InDesign CS.app
        - com.adobe.InDesign
        /mike's old computer/adobe applications/Adobe InDesign CS/Plug-Ins/Online/AUMLibrary.cfm/Contents/SharedSupport/Adobe Update Manager.app
        - com.adobe.ESD.AUM
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe ImageReady CS.app
        - com.adobe.ImageReady
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe Photoshop CS.app
        - com.adobe.Photoshop
        /mike's old computer/adobe applications/Adobe Version Cue/Uninstall Adobe Version Cue.app
        - N/A
        /old computer stuff/At Ease Setup Folder/At Ease Setup
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Apple System Profiler
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Chooser
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/FaxStatus
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Graphing Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Browse the Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Connect To...
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Mail
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Key Caps
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Note Pad
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Remote Access Status
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Scrapbook
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Sherlock
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/SimpleSound
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Stickies
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/IntelliTools/Classic Sending Helper
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/Norton AntiVirus ƒ/NAV Small Scanner
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Appearance
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Apple Menu Options
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/AppleTalk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/ColorSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Configuration Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Control Strip
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Date & Time
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/DialAssist
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Energy Saver
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Extensions Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Exchange
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/General Controls
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Infrared
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Keyboard
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Location Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Memory
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Microsoft Office Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Modem
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Monitors & Sound
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Mouse
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Numbers
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuickTime™ Settings:™ Settings:
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuikSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Remote Access
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Speech
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Startup Disk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/TCP:IP
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Text
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Users & Groups
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Web Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Application Switcher
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/ColorSync Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Control Strip Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop Printer Spooler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FBC Indexing Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FaxMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Find/Find by Content Indexing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Folder Actions
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Norton Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Time Synchronizer
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Web Sharing Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Help/Apple Help Viewer/Help Viewer
        - N/A
        /old computer stuff/OLDIESystem Folder/MacTCP DNR
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Desktop Printer Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Network Setup Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/URL Access Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/System Extensions (Disabled)/AOL 5.0 Backup Installer
        - N/A
        /old computer stuff/Tony Hawk's Pro Skater 4/Tony Hawk's Pro Skater 4.app
        - com.aspyr.thps4
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        - com.adobe.AIR
        /Library/Frameworks/DivX Toolkit.framework
        - com.divx.divxtoolkit
        /Library/Frameworks/EWSMac.framework
        - com.eSellerate.EWSMac67108868
        /Library/Frameworks/HPSmartPrint.framework
        - com.hp.print.HPSmartPrint
        /Library/Frameworks/MacFUSE.framework
        - com.google.MacFUSE
        /Library/Frameworks/PrintMeSSL.framework
        - com.efi.printme.ssl
        /Library/Frameworks/TSLicense.framework
        - net.telestream.license
    PrefPane
        /Library/PreferencePanes/DivX.prefPane
        - com.divx.divxprefs
        /Library/PreferencePanes/Flip4Mac WMV.prefPane
        - net.telestream.wmv.prefpane
        /Library/PreferencePanes/MacFUSE.prefPane
        - com.google.MacFUSE
    Bundles
        /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
        - info.emagic.driver.unitor
        /Library/Contextual Menu Items/ParallelsCM.plugin
        - com.parallels.cmplugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        - com.adobe.adobecp
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/adobecp.plugin
        - com.adobe.adobecp20
        /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
        - com.divx.DivXBrowserPlugin
        /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
        - net.telestream.wmv.plugin
        /Library/Internet Plug-Ins/GarminGpsControl.plugin
        - com.garmin.GarminGpsControl
        /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
        - com.Google.GoogleEarthPlugin.plugin
        /Library/Internet Plug-Ins/Silverlight.plugin
        - com.microsoft.SilverlightPlugin
        /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin
        - com.google.googletalkbrowserplugin
        /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
        - com.apple.plugin.iPhotoPhotocast
        /Library/Internet Plug-Ins/o1dbrowserplugin.plugin
        - com.google.o1dbrowserplugin
        /Library/Printers/Macromedia/PDEs/FlashPaperPDE.plugin
        - com.macromedia.flashpaper.pde.FlashPaperPDE
        /Library/Printers/PPD Plugins/AdobePDFPDE.plugin
        - com.Adobe.print.AdobePDF.pde
        /Library/QuickLook/GBQLGenerator.qlgenerator
        - com.apple.garageband.quicklookgenerator
        /Library/QuickLook/ParallelsQL.qlgenerator
        - com.parellels.quicklookgenerator
        /Library/Spotlight/GBSpotlightImporter.mdimporter
        - com.apple.garageband.spotlightimporter
        /Library/Spotlight/Microsoft Entourage.mdimporter
        - com.microsoft.entourageMDImporter
        /Library/Spotlight/ParallelsMD.mdimporter
        - com.parallels.mdimporter
        /Users/USER/Library/Application Support/Google/Chrome/PepperFlash/12.0.0.70/PepperFlashPlayer.plugin
        - com.macromedia.PepperFlashPlayer.pepper
        /Users/USER/Library/Internet Plug-Ins/CitrixOnlineWebDeploymentPlugin.plugin
        - com.citrixonline.mac.WebDeploymentPlugin
    Library paths
        /Applications/Karaoke Maker/libmp3lame.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/libwchar.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/CoreTypes.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCURL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCrypto.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibSSL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/SystemFrameworkUtils.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/ZLib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/DWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdCaps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdFS.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKEngine.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/AdobePIM.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/PWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_caps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_oobelib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_upgrade.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/UWA/UWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/core/AdobePIM.dylib
        /Library/Application Support/DivX/Libraries/libDivXDesktopSupport.dylib
        /Library/Application Support/DivX/QtPlugins/accessible/libqtaccessiblewidgets.dylib
        /Library/Application Support/DivX/QtPlugins/iconengines/libqsvgicon.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqgif.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqico.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqjpeg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqmng.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqsvg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqtiff.dylib
        /Library/Application Support/DivX/QtPlugins/script/libqtscriptdbus.dylib
        /Library/Application Support/DivX/QtPlugins/sqldrivers/libqsqlite.dylib
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse.dylib. dSYM/Contents/Resources/DWARF/libfuse.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse_ino64. dylib.dSYM/Contents/Resources/DWARF/libfuse_ino64.dylib
        /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Libraries/libHPIOnetsnmp.5.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/B/Resources/lib/SxC FReader.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/C/Resources/lib/SxC FReader.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnspr4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnssckbi.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplc4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplds4.dylib
        /Users/USER/Library/Application Support/Firefox/Profiles/w5owlxqa.default/gmp-gmpopenh264/1.1/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.6.758/_platform_specific/mac_x64/libwidev inecdm.dylib
        /Users/USER/Library/Caches/com.apple.ScreenSaver.Engine/com.apple.vision/com.ap ple.vision.64FaceCoreCLKernel.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libpbodbc3.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-jni-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-pb-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-rw-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-util-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/tomcat/webapps/ROOT/WEB-INF/components/com.adobe.bauhaus.nativecomm/res/VCF oundation.dylib
        /usr/lib/libgutenprint.2.0.3.dylib
        /usr/local/lib/libfreetype.6.3.16.dylib
        /usr/local/lib/libfreetype.6.dylib
        /usr/local/lib/libfreetype.dylib
        /usr/local/lib/libfuse.2.dylib
        /usr/local/lib/libfuse_ino64.2.dylib
    Installations
        Norton AntiVirus Application: 6/20/10, 10:21 PM
        Symantec Scheduler: 6/20/10, 10:21 PM
        Microsoft® Silverlight™ Browser Plug-In: 6/19/10, 8:25 PM
        Parallels Desktop 5 for Mac: 6/10/10, 6:02 AM
        MacFUSE Core: 6/10/10, 6:03 AM
    Elapsed time (sec): 317
    <Edited By Host>

  • Load_hdi: timed out waiting for driver to load

    Howdy,
    I'm having a bit of trouble with my computer refusing to mount disks, images, etc. This seems to start after trying to mount an external hard drive (passport from western digital). After plugging in the passport, I can no longer mount external hard drives, disk images, etc. After I reboot, I can mount other exteranl drives and images just fine. This behavior was replicated after I rebooted and tried to mount the passport again. Does any one have any idea what may be causing this?
    Here is what I got from my logs:
    Attach Image ¿SecUpd2007-004Univ.dmg¿
    Initializing...
    Apr 20 20:40:47 absent crashdump[864]: Unable to save crash report!\n
    load_hdi: timed out waiting for IOKit to finish matching
    Apr 20 20:40:49 absent crashdump[864]: Date/Time: 2007-04-20 20:40:42.399 -1100
    Apr 20 20:40:49 absent crashdump[864]: OS Version: 10.4.9 (Build 8P135)
    Apr 20 20:40:49 absent crashdump[864]: Report Version: 4
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Command: mds
    Apr 20 20:40:49 absent crashdump[864]: Path: /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mds
    Apr 20 20:40:49 absent crashdump[864]: Parent: launchd [1]
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Version: ??? (???)
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: PID: 188
    Apr 20 20:40:49 absent crashdump[864]: Thread: 6
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Exception: EXCBADACCESS (0x0001)
    Apr 20 20:40:49 absent crashdump[864]: Codes: KERNINVALIDADDRESS (0x0001) at 0xa1b1c1db
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Thread 0:
    Apr 20 20:40:49 absent crashdump[864]: 0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    Apr 20 20:40:49 absent crashdump[864]: 1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    Apr 20 20:40:49 absent crashdump[864]: 2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    Apr 20 20:40:49 absent crashdump[864]: 3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    Apr 20 20:40:49 absent crashdump[864]: 4 mds 0x00012fcc 0x1000 + 73676
    Apr 20 20:40:49 absent crashdump[864]: 5 mds 0x0000531c 0x1000 + 17180
    Apr 20 20:40:49 absent crashdump[864]: 6 mds 0x00042b24 0x1000 + 269092
    Apr 20 20:40:49 absent crashdump[864]: 7 mds 0x000429cc 0x1000 + 268748
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Thread 1:
    Apr 20 20:40:49 absent crashdump[864]: 0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    Apr 20 20:40:49 absent crashdump[864]: 1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    Apr 20 20:40:49 absent crashdump[864]: 2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    Apr 20 20:40:49 absent crashdump[864]: 3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    Apr 20 20:40:49 absent crashdump[864]: 4 mds 0x0000785c 0x1000 + 26716
    Apr 20 20:40:49 absent crashdump[864]: 5 mds 0x000076f4 0x1000 + 26356
    Apr 20 20:40:49 absent crashdump[864]: 6 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    Apr 20 20:40:49 absent crashdump[864]: 7 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Thread 2:
    Apr 20 20:40:49 absent crashdump[864]: 0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    Apr 20 20:40:49 absent crashdump[864]: 1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    Apr 20 20:40:49 absent crashdump[864]: 2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    Apr 20 20:40:49 absent crashdump[864]: 3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    Apr 20 20:40:49 absent crashdump[864]: 4 mds 0x0000785c 0x1000 + 26716
    Apr 20 20:40:49 absent crashdump[864]: 5 mds 0x000076f4 0x1000 + 26356
    Apr 20 20:40:49 absent crashdump[864]: 6 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    Apr 20 20:40:49 absent crashdump[864]: 7 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Thread 3:
    Apr 20 20:40:49 absent crashdump[864]: 0 libSystem.B.dylib 0x9002f20c kevent + 12
    Apr 20 20:40:49 absent crashdump[864]: 1 mds 0x0001208c 0x1000 + 69772
    Apr 20 20:40:49 absent crashdump[864]: 2 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Thread 4:
    Apr 20 20:40:49 absent crashdump[864]: 0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    Apr 20 20:40:49 absent crashdump[864]: 1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    Apr 20 20:40:49 absent crashdump[864]: 2 mds 0x00012928 0x1000 + 71976
    Apr 20 20:40:49 absent crashdump[864]: 3 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Thread 5:
    Apr 20 20:40:49 absent crashdump[864]: 0 libSystem.B.dylib 0x90014a2c read + 12
    Apr 20 20:40:49 absent crashdump[864]: 1 mds 0x00012cb4 0x1000 + 72884
    Apr 20 20:40:49 absent crashdump[864]: 2 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Thread 6 Crashed:
    Apr 20 20:40:49 absent crashdump[864]: 0 com.apple.SearchKit 0x91087f8c PtrList::Append(void*) + 24
    Apr 20 20:40:49 absent crashdump[864]: 1 com.apple.SearchKit 0x91063110 BTree::PutValuesProcessLevelEntryNonLeaf(LevelInfoList**, unsigned long, LevelInfoEntry*, void**, unsigned char*, int ()(void, unsigned char const*), IAOrderedStorable* ()(void*, IAOrderedStorable*, void*), void*) + 444
    Apr 20 20:40:49 absent crashdump[864]: 2 com.apple.SearchKit 0x91062e64 BTree::PutValuesProcessLevel(LevelInfoList**, unsigned long, void**, int ()(void, unsigned char const*), IAOrderedStorable* ()(void*, IAOrderedStorable*, void*), bool ()(void), void*) + 292
    Apr 20 20:40:49 absent crashdump[864]: 3 com.apple.SearchKit 0x91062f28 BTree::PutValuesProcessLevel(LevelInfoList**, unsigned long, void**, int ()(void, unsigned char const*), IAOrderedStorable* ()(void*, IAOrderedStorable*, void*), bool ()(void), void*) + 488
    Apr 20 20:40:49 absent crashdump[864]: 4 com.apple.SearchKit 0x91062f28 BTree::PutValuesProcessLevel(LevelInfoList**, unsigned long, void**, int ()(void, unsigned char const*), IAOrderedStorable* ()(void*, IAOrderedStorable*, void*), bool ()(void), void*) + 488
    Apr 20 20:40:49 absent crashdump[864]: 5 com.apple.SearchKit 0x91062f28 BTree::PutValuesProcessLevel(LevelInfoList**, unsigned long, void**, int ()(void, unsigned char const*), IAOrderedStorable* ()(void*, IAOrderedStorable*, void*), bool ()(void), void*) + 488
    Apr 20 20:40:49 absent crashdump[864]: 6 com.apple.SearchKit 0x910629f8 BTree::PutValuesSorted(int, void**, int ()(void, unsigned char const*), IAOrderedStorable* ()(void*, IAOrderedStorable*, void*), bool ()(void), void*) + 472
    Apr 20 20:40:49 absent crashdump[864]: 7 com.apple.SearchKit 0x91058540 TermIndex::FlushTermUpdatesBulk(Progress*) + 228
    Apr 20 20:40:49 absent crashdump[864]: 8 com.apple.SearchKit 0x9102cc0c TermIndex::FlushTermUpdates(Progress*) + 196
    Apr 20 20:40:49 absent crashdump[864]: 9 com.apple.SearchKit 0x9101be60 TermIndex::FlushUpdates() + 268
    Apr 20 20:40:49 absent crashdump[864]: 10 com.apple.SearchKit 0x9101bc4c TermIndex::Flush() + 64
    Apr 20 20:40:49 absent crashdump[864]: 11 com.apple.SearchKit 0x9101ba20 TIAIndex::Flush(unsigned long) + 252
    Apr 20 20:40:49 absent crashdump[864]: 12 com.apple.SearchKit 0x9101b844 SKIndexFlushInternal + 96
    Apr 20 20:40:49 absent crashdump[864]: 13 ...pple.ContentIndex.framework 0x970de280 FlushIndex + 132
    Apr 20 20:40:49 absent crashdump[864]: 14 ...pple.ContentIndex.framework 0x970dd544 ContentIndexSyncIndex + 44
    Apr 20 20:40:49 absent crashdump[864]: 15 mds 0x00037344 0x1000 + 222020
    Apr 20 20:40:49 absent crashdump[864]: 16 mds 0x00037208 0x1000 + 221704
    Apr 20 20:40:49 absent crashdump[864]: 17 mds 0x00008b4c 0x1000 + 31564
    Apr 20 20:40:49 absent crashdump[864]: 18 com.apple.Foundation 0x92be85f4 -[NSArray makeObjectsPerformSelector:withObject:] + 264
    Apr 20 20:40:49 absent crashdump[864]: 19 mds 0x00007d54 0x1000 + 27988
    Apr 20 20:40:49 absent crashdump[864]: 20 com.apple.CoreFoundation 0x907df4fc __CFRunLoopDoSources0 + 384
    Apr 20 20:40:49 absent crashdump[864]: 21 com.apple.CoreFoundation 0x907dea2c __CFRunLoopRun + 452
    Apr 20 20:40:49 absent crashdump[864]: 22 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    Apr 20 20:40:49 absent crashdump[864]: 23 mds 0x0000785c 0x1000 + 26716
    Apr 20 20:40:49 absent crashdump[864]: 24 mds 0x000076f4 0x1000 + 26356
    Apr 20 20:40:49 absent crashdump[864]: 25 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    Apr 20 20:40:49 absent crashdump[864]: 26 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Thread 7:
    Apr 20 20:40:49 absent crashdump[864]: 0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    Apr 20 20:40:49 absent crashdump[864]: 1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    Apr 20 20:40:49 absent crashdump[864]: 2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    Apr 20 20:40:49 absent crashdump[864]: 3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    Apr 20 20:40:49 absent crashdump[864]: 4 mds 0x0000785c 0x1000 + 26716
    Apr 20 20:40:49 absent crashdump[864]: 5 mds 0x000076f4 0x1000 + 26356
    Apr 20 20:40:49 absent crashdump[864]: 6 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    Apr 20 20:40:49 absent crashdump[864]: 7 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Thread 6 crashed with PPC Thread State 64:
    Apr 20 20:40:49 absent crashdump[864]: srr0: 0x0000000091087f8c srr1: 0x000000000200d030 vrsave: 0x0000000000000000
    Apr 20 20:40:49 absent crashdump[864]: cr: 0x44028224 xer: 0x0000000020000001 lr: 0x0000000091063110 ctr: 0x0000000090003ab8
    Apr 20 20:40:49 absent crashdump[864]: r0: 0x0000000091063110 r1: 0x00000000f03039c0 r2: 0x00000000003432dc r3: 0x00000000a1b1c1d3
    Apr 20 20:40:49 absent crashdump[864]: r4: 0x0000000002babba0 r5: 0x00000000f03039f0 r6: 0x00000000ffffffff r7: 0x0000000000000077
    Apr 20 20:40:49 absent crashdump[864]: r8: 0x0000000000000095 r9: 0x0000000000000018 r10: 0x0000000091011900 r11: 0x0000000024028222
    Apr 20 20:40:49 absent crashdump[864]: r12: 0x0000000090003ab8 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x00000000003432d0
    Apr 20 20:40:49 absent crashdump[864]: r16: 0x0000000000000003 r17: 0x000000009105824c r18: 0x00000000f0303f80 r19: 0x000000007aff8e0a
    Apr 20 20:40:49 absent crashdump[864]: r20: 0x00000000910581c4 r21: 0x0000000000344620 r22: 0x0000000059ef4f08 r23: 0x00000000003fceb0
    Apr 20 20:40:49 absent crashdump[864]: r24: 0x00000000029b3000 r25: 0x0000000000000000 r26: 0x00000000000194d2 r27: 0x00000000869c4ad2
    Apr 20 20:40:49 absent crashdump[864]: r28: 0x0000000000000000 r29: 0x0000000002babba0 r30: 0x00000000a1b1c1d3 r31: 0x0000000091062f6c
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: Binary Images Description:
    Apr 20 20:40:49 absent crashdump[864]: 0x1000 - 0x80fff mds /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mds
    Apr 20 20:40:49 absent crashdump[864]: 0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    Apr 20 20:40:49 absent crashdump[864]: 0x90000000 - 0x901bdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x90215000 - 0x9021afff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x9021c000 - 0x90269fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    Apr 20 20:40:49 absent crashdump[864]: 0x90294000 - 0x90345fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    Apr 20 20:40:49 absent crashdump[864]: 0x90374000 - 0x9072ffff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    Apr 20 20:40:49 absent crashdump[864]: 0x907bc000 - 0x90895fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Apr 20 20:40:49 absent crashdump[864]: 0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    Apr 20 20:40:49 absent crashdump[864]: 0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    Apr 20 20:40:49 absent crashdump[864]: 0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.9 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    Apr 20 20:40:49 absent crashdump[864]: 0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    Apr 20 20:40:49 absent crashdump[864]: 0x90f92000 - 0x90fd3fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    Apr 20 20:40:49 absent crashdump[864]: 0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    Apr 20 20:40:49 absent crashdump[864]: 0x91010000 - 0x91091fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    Apr 20 20:40:49 absent crashdump[864]: 0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    Apr 20 20:40:49 absent crashdump[864]: 0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    Apr 20 20:40:49 absent crashdump[864]: 0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    Apr 20 20:40:49 absent crashdump[864]: 0x913ec000 - 0x91414fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    Apr 20 20:40:49 absent crashdump[864]: 0x91427000 - 0x91432fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91437000 - 0x9143ffff libbsm.dylib /usr/lib/libbsm.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    Apr 20 20:40:49 absent crashdump[864]: 0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    Apr 20 20:40:49 absent crashdump[864]: 0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    Apr 20 20:40:49 absent crashdump[864]: 0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    Apr 20 20:40:49 absent crashdump[864]: 0x9174d000 - 0x91804fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    Apr 20 20:40:49 absent crashdump[864]: 0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    Apr 20 20:40:49 absent crashdump[864]: 0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    Apr 20 20:40:49 absent crashdump[864]: 0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    Apr 20 20:40:49 absent crashdump[864]: 0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    Apr 20 20:40:49 absent crashdump[864]: 0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    Apr 20 20:40:49 absent crashdump[864]: 0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    Apr 20 20:40:49 absent crashdump[864]: 0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91c77000 - 0x91cdffff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91ce4000 - 0x91d21fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91d28000 - 0x91d41fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91d46000 - 0x91d49fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91d4b000 - 0x91e29fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x91e49000 - 0x91e49fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    Apr 20 20:40:49 absent crashdump[864]: 0x91e4b000 - 0x91f30fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    Apr 20 20:40:49 absent crashdump[864]: 0x91f38000 - 0x91f57fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    Apr 20 20:40:49 absent crashdump[864]: 0x91fc3000 - 0x92031fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x9203c000 - 0x920d1fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x920eb000 - 0x92673fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x926a6000 - 0x929d1fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x92a01000 - 0x92aeffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    Apr 20 20:40:49 absent crashdump[864]: 0x92bbb000 - 0x92de6fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Apr 20 20:40:49 absent crashdump[864]: 0x936ff000 - 0x9371ffff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    Apr 20 20:40:49 absent crashdump[864]: 0x94caa000 - 0x94ccafff com.apple.NetInfo 1.0.0 (???) /System/Library/PrivateFrameworks/NetInfo.framework/Versions/A/NetInfo
    Apr 20 20:40:49 absent crashdump[864]: 0x94f6e000 - 0x94f7dfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    Apr 20 20:40:49 absent crashdump[864]: 0x970dc000 - 0x970defff com.apple.ContentIndex.framework 1.0.1 /System/Library/PrivateFrameworks/ContentIndex.framework/Versions/A/ContentInde x
    Apr 20 20:40:49 absent crashdump[864]: Apr 20 20:40:49 absent crashdump[864]: load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for IOKit to finish matching
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for IOKit to finish matching
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for IOKit to finish matching
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for IOKit to finish matching
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for IOKit to finish matching
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for IOKit to finish matching
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for IOKit to finish matching
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for IOKit to finish matching
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for IOKit to finish matching
    load_hdi: timed out waiting for driver to load
    2007-04-20 20:43:23.431 diskimages-helper[865] ERROR: unable to load disk image driver - 0xE00002C0/-536870208 - Device not configured.
    Finishing...
    PowerBook Mac OS X (10.4.9)

    Today I did a bit more troubleshooting. From the Terminal, the command-line tools for working with DMG files gave me the same error. So, I did a Safe Boot of my Mac, holding the SHIFT key from the tone at restart until the gray loading screen appeared. It took quite a while to get to the login screen, and towards the end of the wait, the fans on my G5 were running at full-speed. I was able to open disk images, so I repaired permissions and then reinstalled the latest security update. Rebooted back into my normal desktop and everything is working now. I am not sure what the problem was. It's fixed now. Hope this helps.

  • Timed out waiting for device sys-subsystem-net-devices-enp69s0.device

    Hi all,
    Since quite some time I have been waiting for Arch Linux to startup (and shutdown), and today I wanted to figure out what was going wrong. I found out that I could find the boot log file with journalctl, and this seems to be the issue:
    Oct 13 21:01:52 localhost systemd[1]: Job sys-subsystem-net-devices-enp69s0.device/start timed out.
    Oct 13 21:01:52 localhost systemd[1]: Timed out waiting for device sys-subsystem-net-devices-enp69s0.device.
    Oct 13 21:01:52 localhost systemd[1]: Dependency failed for dhcpcd on enp69s0.
    Oct 13 21:01:52 localhost systemd[1]: Starting Network.
    Oct 13 21:01:52 localhost systemd[1]: Reached target Network.
    Oct 13 21:01:52 localhost systemd[1]: Mounting /mnt/homesrv/storage...
    Now, enp69s0 is my LAN network interface, which I barely use, and my WLAN connection is handled by NetworkManager. However, I can't find out what I'm supposed to do to stop this behaviour. I tried:
    systemctl disable sys-subsystem-net-devices-enp69s0.device
    But that does not seem to solve anything. Can anyone help me out?
    Last edited by Hmail (2013-10-13 19:09:53)

    Andreaskem wrote:Maybe try "systemctl disable [email protected]".
    That did the trick! I didn't want to disable the device because I might use it once in a while.
    The shutdown issue is not solved yet, but that seems to be an issue with a samba share that is unmounted after the network services are shutdown. I'll delve in the wiki to figure out how to fix that. But for now, I can at least start my machine up within seconds. Thanks a lot!

  • Timed out waiting for ccmexec service to be fully operational

    We are deploying Windows 7 in an SCCM 2007 R3 SP2 environment.  Some of the clients we target fail the task sequence with the error, "Timed out waiting for ccmexec service to be fully operational".  Below is the relevant part of the SMSTS.LOG
    file:
    Succeeded loading resource DLL 'C:\Windows\system32\CCM\1033\TSRES.DLL' 
    Failed to create an instance of COM progress UI object. Error code 0x80040154 
    Timed out waiting for ccmexec service to be fully operational 
    0, HRESULT=80004005 (e:\nts_sms_fre\sms\framework\tscore\utils.cpp,4192) 
    Failed to wait for Ccmexec service to be fully operational (0x80004005) 
    I have seen several posts with this error that say to create the "ConfigMgr Remote Control Users" group. 
    Here is an example.  We have created this group locally AND on the domain, but we still see this failure on about 10% of clients that we target.  Any other ideas what might be creating this issue?
    Thanks,
    FP

    After a restart in the task sequence (not the same restart every time) the ccmexec process doesn´t seem to want to start again. The problem is intermittent and does not occure on every installation, though quite frequently. 
    In the smsts.log you get "waiting for the ccmexec process to start" and "Waiting for CcmExec service to be fully operational", eventually it times out and the installation fails. If we start a command prompt and start the service manually
    the installation continues though. 
    The strange thing is, this only seems to happen on a specific computer model. We have tried updating BIOS and drivers to the latest version, but no success.
    Last lines of smsts.log
    Failed to find property 'AutoApplyDeployment' in 'CCM_ApplicationManagementClientConfig' class defintion. Error 0x80041002. Default value will be used for this property
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Policy complied successfully in WMI 'root\ccm\policy\defaultmachine\requestedconfig' namespace
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    End TS policy compilation TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Get Install Directory for SMS Client TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Updating settings in \\.\root\ccm\policy\machine\actualconfig
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    RequestedConfig policy instance(s) : 437 TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Locked \\.\ROOT\ccm\policy\machine\RequestedConfig for source SMS:Client:Default:{8864FB91-94EE-4F16-A144-0D82A232049D} successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Namespace: \\.\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT PolicyID FROM CCM_Policy_Policy5 WHERE (PolicySource = "SMS:Client:Default:{8864FB91-94EE-4F16-A144-0D82A232049D}") AND (PolicyState = "Active") AND (PolicyType = "Machine")
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    There is no ccm_policy_policy instance, skipping addition to realinst map
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Unlocked \\.\ROOT\ccm\policy\machine\RequestedConfig for source SMS:Client:Default:{8864FB91-94EE-4F16-A144-0D82A232049D} successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    RequestedConfig policy instance(s) : 0 TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Locked \\.\ROOT\ccm\policy\machine\RequestedConfig for source SMS:GAV successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Namespace: \\.\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT PolicyID FROM CCM_Policy_Policy5 WHERE (PolicySource = "SMS:GAV") AND (PolicyState = "Active") AND (PolicyType = "Machine")
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    There is no ccm_policy_policy instance, skipping addition to realinst map
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Unlocked \\.\ROOT\ccm\policy\machine\RequestedConfig for source SMS:GAV successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    RequestedConfig policy instance(s) : 0 TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Locked \\.\ROOT\ccm\policy\machine\RequestedConfig for source CcmPortal successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Namespace: \\.\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT PolicyID FROM CCM_Policy_Policy5 WHERE (PolicySource = "CcmPortal") AND (PolicyState = "Active") AND (PolicyType = "Machine")
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    There is no ccm_policy_policy instance, skipping addition to realinst map
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Unlocked \\.\ROOT\ccm\policy\machine\RequestedConfig for source CcmPortal successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    RequestedConfig policy instance(s) : 0 TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Locked \\.\ROOT\ccm\policy\machine\RequestedConfig for source Local successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    RequestedConfig policy instance(s) : 9 TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Unlocked \\.\ROOT\ccm\policy\machine\RequestedConfig for source Local successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    RequestedConfig policy instance(s) : 34 TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Locked \\.\ROOT\ccm\policy\machine\RequestedConfig for source CcmTaskSequence successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Namespace: \\.\ROOT\ccm\policy\machine\RequestedConfig, Query: SELECT PolicyID FROM CCM_Policy_Policy5 WHERE (PolicySource = "CcmTaskSequence") AND (PolicyState = "Active") AND (PolicyType = "Machine")
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    There is no ccm_policy_policy instance, skipping addition to realinst map
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Unlocked \\.\ROOT\ccm\policy\machine\RequestedConfig for source CcmTaskSequence successfully
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Total RequestedConfig policy instance(s) : 480
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    New/Changed ActualConfig policy instance(s) : 0
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Policy evaluation initiated TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Waiting for policy to be compiled in 'root\ccm\policy\machine' namespace
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Query = 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"'
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Verified policy for instance path 'CCM_SystemHealthClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Query = 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"'
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Verified policy for instance path 'CCM_SoftwareUpdatesClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Query = 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"'
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Verified policy for instance path 'CCM_SoftwareDistributionClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Query = 'CCM_NetworkAccessAccount.SiteSettingsKey="1"'
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Verified policy for instance path 'CCM_NetworkAccessAccount.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Query = 'CCM_RebootSettings.SiteSettingsKey="1"'
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Verified policy for instance path 'CCM_RebootSettings.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Query = 'CCM_ApplicationManagementClientConfig.SiteSettingsKey="1"'
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Verified policy for instance path 'CCM_ApplicationManagementClientConfig.SiteSettingsKey="1"' compiled in 'root\ccm\policy\machine' namespace
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Policy verification done TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Config policies compiled successfully TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    _SMSTSReturnToGINA variable set to true TSManager
    2014-09-15 09:53:19 2244 (0x08C4)
    Waiting for CcmExec service to be fully operational
    TSManager 2014-09-15 09:53:19
    2244 (0x08C4)
    Succeeded loading resource DLL 'C:\Windows\CCM\1033\TSRES.DLL'
    TSManager 2014-09-15 09:53:20
    2244 (0x08C4)
    Launching command shell. OSDSetupHook
    2014-09-15 09:54:28 2212 (0x08A4)
    Windows station: WinSta0 OSDSetupHook
    2014-09-15 09:54:28 2212 (0x08A4)
    Desk"Apple-tab-span" style="white-space:pre;"> OSDSetupHook
    2014-09-15 09:54:28 2212 (0x08A4)
    executing command: C:\Windows\system32\cmd.exe /k
    OSDSetupHook 2014-09-15 09:54:28
    2212 (0x08A4)
    executed command: C:\Windows\system32\cmd.exe /k
    OSDSetupHook 2014-09-15 09:54:28
    2212 (0x08A4)
    Also some errors in the ccmexec.log, if they have anything to do with it:
    Messaging::Initialize(), HRESULT=80080005 (e:\nts_sccm_release\sms\framework\messaging\ccmexec\init.cpp,951)
    CcmExec 2014-09-15 09:54:04
    2380 (0x094C)
    Error initializing messaging subsystem (0x80080005).
    CcmExec 2014-09-15 09:54:04
    2380 (0x094C)
    Released system busy flag after ccmexec initialization.
    CcmExec 2014-09-15 09:54:04
    2380 (0x094C)
    Phase 1 initialization failed (0x80080005).
    CcmExec 2014-09-15 09:54:04
    2380 (0x094C)
    *** System is now free to go to sleep CcmExec
    2014-09-15 09:54:04 2376 (0x0948)
    Init_Phase1(), HRESULT=80080005 (e:\nts_sccm_release\sms\framework\messaging\ccmexec\entrypoint.cpp,2528)
    CcmExec 2014-09-15 09:54:04
    2380 (0x094C)
    Phase 1 initialization failed (0x80080005).
    CcmExec 2014-09-15 09:54:04
    2380 (0x094C)
    pTask->Execute(pService, pState, ulFlags), HRESULT=80080005 (e:\nts_sccm_release\sms\framework\ccmtask\taskexec.cpp,108)
    CcmExec 2014-09-15 09:54:04
    2380 (0x094C)
    ExecuteTask() failed with HR = 0x80080005 CcmExec
    2014-09-15 09:54:04 2380 (0x094C)
    SERVICE_CONTROL_POWEREVENT(Event=PBT_POWERSETTINGCHANGE)
    CCMEXEC 2014-09-15 09:55:48
    1900 (0x076C)
    SystemTaskProcessor::QueueEvent(PowerChanged, 0)
    CCMEXEC 2014-09-15 09:55:48
    1900 (0x076C)
    SystemTaskProcessor::QueueEvent(PowerChangedEx, 0)
    CCMEXEC 2014-09-15 09:55:48
    1900 (0x076C)
    //Fredrik

  • FCGI1031: timed out waiting for response body

    Hello,
    I can not see the remote computer to the test.php
    I see logs
    for host 33.180.164.9 trying to GET /test.php, responder-fastcgi reports: FCGI1031: timed out waiting for response body from c:/program files/oracle/webserver7/https-testnet4/docs/test.php
    My obj.conf
    Service type="magnus-internal/php"
    fn="responder-fastcgi"
    app-path="C:/Program Files/Oracle/WebServer7/plugins/php/php-cgi.exe"
    bind-path="https-testnet4--php_cgi"
    app-env="PHPRC=C:/Program Files/Oracle/WebServer7/plugins/php"
    app-env="PHP_FCGI_CHILDREN=2"
    app-env="PHP_FCGI_MAX_REQUESTS=200"
    bucket="php-bucket"
    I see the internal computer test.php but test.php will not appear on the remote computer.
    Regards

    Good day.
    I have a similar problem and I have managed to pinpoint when it fails but unfortunately I don't know how to fix it yet.
    In my scenario, I have 2 separate processes:
    the first process reads data from a Seebeyond SRE instance and stores it on a local Java CAPS queue.
    The second process is an EVision process that reads the data from this queue and displays it on a page.
    Whenever I am not connected to the network linking my Java CAPS instance to the Seebeyond SRE instance (first process cannot connect ) I get this problem on the EVision side every second time I request a page. This means I can view the first message on the queue and then I have to restart the Logical Host
    This doesn't make sense to me, since The EVision process is a completely separate process, deployed in it's own WAR file.

  • Solaris 10 instalation in Guest Domain - Timed out waiting for TFTP reply

    I have the next trouble
    I have a Sun Fire T1000 and i want install two Guest LDOM's with Solaris10 in each one, I Install the LDOM Manager 1.0.3 and the service is "online" also the another services needed
    First Setup the 2 Guest LDOM's in the primary Domain sucesfully .... here is a desc of the configuration.
    # ldm list-bindings
    NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME
    primary active -n-cv SP 4 1G 0.1% 2h 14m
    MAC
    00:14:4f:a7:85:1e
    VCPU
    VID PID UTIL STRAND
    0 0 0.2% 100%
    1 1 0.2% 100%
    2 2 0.1% 100%
    3 3 0.1% 100%
    MAU
    ID CPUSET
    0 (0, 1, 2, 3)
    MEMORY
    RA PA SIZE
    0x8000000 0x8000000 1G
    VARIABLES
    diag-switch?=true
    security-#badlogins=0
    IO
    DEVICE PSEUDONYM OPTIONS
    pci@780 bus_a
    pci@7c0 bus_b
    VCC
    NAME PORT-RANGE
    primary-vcc0 5000-5100
    CLIENT PORT
    aplica_srss1@primary-vcc0 5001
    aplica_prod@primary-vcc0 5000
    VSW
    NAME MAC NET-DEV DEVICE MODE
    primary-vsw0 00:14:4f:a7:85:1e bge0 switch@0
    PEER MAC
    vnet2@aplica_srss1 00:14:4f:fb:f4:e0
    vnet1@aplica_prod 00:14:4f:fb:2c:60
    VDS
    NAME VOLUME OPTIONS DEVICE
    primary-vds0 vol1 /dev/dsk/c0t0d0s3
    CLIENT VOLUME
    vdisk1@aplica_prod vol1
    VCONS
    NAME SERVICE PORT
    SP
    NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME
    aplica_prod active -t--- 5000 4 2G 15% 9m
    MAC
    00:14:4f:fb:2c:60
    VCPU
    VID PID UTIL STRAND
    0 4 35% 100%
    1 5 0.0% 100%
    2 6 7.0% 100%
    3 7 84% 100%
    MEMORY
    RA PA SIZE
    0x8000000 0x48000000 2G
    VARIABLES
    auto-boot?=true
    boot-device=
    use-nvramrc?=true
    NETWORK
    NAME SERVICE DEVICE MAC
    vnet1 primary-vsw0@primary network@0 00:14:4f:fb:2c:60
    PEER MAC
    primary-vsw0@primary 00:14:4f:a7:85:1e
    vnet2@aplica_srss1 00:14:4f:fb:f4:e0
    DISK
    NAME VOLUME TOUT DEVICE SERVER
    vdisk1 vol1@primary-vds0 disk@0 primary
    VCONS
    NAME SERVICE PORT
    aplica_prod primary-vcc0@primary 5000
    NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME
    aplica_srss1 bound ----- 5001 24 13184M
    MAC
    00:14:4f:fb:ad:fb
    VCPU
    VID PID UTIL STRAND
    0 8 100%
    1 9 100%
    2 10 100%
    3 11 100%
    4 12 100%
    5 13 100%
    6 14 100%
    7 15 100%
    8 16 100%
    9 17 100%
    10 18 100%
    11 19 100%
    12 20 100%
    13 21 100%
    14 22 100%
    15 23 100%
    16 24 100%
    17 25 100%
    18 26 100%
    19 27 100%
    20 28 100%
    21 29 100%
    22 30 100%
    23 31 100%
    MEMORY
    RA PA SIZE
    0x8000000 0xc8000000 13184M
    VARIABLES
    auto-boot?=true
    boot-device=
    NETWORK
    NAME SERVICE DEVICE MAC
    vnet2 primary-vsw0@primary network@0 00:14:4f:fb:f4:e0
    PEER MAC
    primary-vsw0@primary 00:14:4f:a7:85:1e
    vnet1@aplica_prod 00:14:4f:fb:2c:60
    VCONS
    NAME SERVICE PORT
    aplica_srss1 primary-vcc0@primary 5001
    Then i mount the ISO images of The solaris OS 5/08, Later install the jumpstart server without troubles.... Here are the Configuration files needed for the properly setup of the service for a better guide

    # ./add_install_client -d -e 0:14:4f:fb:2c:60 -s Zolder:/var/jump_start/ sun4v
    cleaning up preexisting install client "0:14:4f:fb:2c:60"
    To disable 0:14:4f:fb:2c:60 in the DHCP server,
    remove the entry with Client ID 0100144FFB2C60
    To enable 0100144FFB2C60 in the DHCP server, ensure that
    the following Sun vendor-specific options are defined
    (SinstNM, SinstIP4, SinstPTH, SrootNM, SrootIP4,
    SrootPTH, and optionally SbootURI, SjumpCF and SsysidCF),
    and add a macro to the server named 0100144FFB2C60,
    containing the following option values:
    Install server (SinstNM) : Zolder
    Install server IP (SinstIP4) : 172.24.0.10
    Install server path (SinstPTH) : /var/jump_start/
    Root server name (SrootNM) : Zolder
    Root server IP (SrootIP4) : 172.24.0.10
    Root server path (SrootPTH) : /mnt/s0/Solaris_10/Tools/Boot
    Boot file (BootFile) : 0100144FFB2C60
    # cat /etc/inet/hosts // The Content of this file is exactly with ipnodes file
    127.0.0.1 localhost
    172.24.0.10 Zolder loghost
    172.24.0.9 primary-vsw0
    172.24.0.8 aplica_prod
    172.24.0.7 aplica_srss1
    # cat /etc/ethers
    00:14:4f:fb:2c:60 aplica_prod
    # cat /etc/bootparams
    aplica_prod root=Zolder:/mnt/s0/Solaris_10/Tools/Boot install=Zolder:/var/jump_start/ boottype=:in rootopts=:rsize=8192
    # cat /etc/dfs/dfstab
    share -F nfs -o ro,anon=0 /var/jump_start/
    share -F nfs -o ro,anon=0 /mnt/s0/Solaris_10/Tools/Boot
    share -F nfs -o ro,anon=0 /mnt/s1
    # ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    vsw0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 172.24.0.10 netmask fffffe00 broadcast 172.24.1.255
    ether 0:14:4f:a7:85:1e
    vsw0:1: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 172.24.0.9 netmask fffffe00 broadcast 172.24.1.255
    Here i plumb up the networks interfaces and setup the vsw0 device and change the MAC address of the vsw0 for the same of the bge0 device.
    Then i Log to a Guest LDOM aplica_prod
    ----------START CONSOLE 1-------------------------------
    # telnet localhost 5000
    Trying 127.0.0.1...
    Connected to localhost.
    Escape character is '^]'.
    Connecting to console "aplica_prod" in group "aplica_prod" ....
    Press ~? for control options ..
    ----END CONSOLE 1----
    At the same time i open another console for startup the Guest LDOM aplica_prod i make a snoop of the vsw0 interface
    ---START CONSOLE 2---
    # ldm start aplica_prod
    LDom aplica_prod started
    -bash-3.00# snoop -d vsw0 | grep aplica_prod
    Using device /dev/vsw0 (promiscuous mode)
    ---END CONSOLE 2-----
    In the other console is produced the next exit
    ----START CONSOLE 1------
    Sun Fire(TM) T1000, No Keyboard
    Copyright 2008 Sun Microsystems, Inc. All rights reserved.
    OpenBoot 4.28.9, 2048 MB memory available, Serial #66792544.
    Ethernet address 0:14:4f:fb:2c:60, Host ID: 83fb2c60.
    Boot device: File and args:
    ERROR: boot-read fail
    Evaluating:
    Can't locate boot device
    {0} ok boot vnet1 install
    Boot device: /virtual-devices@100/channel-devices@200/network@0 File and args: install
    Requesting Internet Address for 0:14:4f:fa:82:17
    Requesting Internet Address for 0:14:4f:fa:82:17
    Timed out waiting for TFTP reply
    ---END CONSOLE 1-----
    in the console 2 the snoop generates an exit of the net traffic for the vsw0 device
    ----START CONSOLE 2--------
    primary-vsw0 -> aplica_prod RARP R 0:14:4f:fb:2c:60 is 172.24.0.8, aplica_prod
    aplica_prod -> BROADCAST TFTP Read "AC180008" (octet)
    primary-vsw0 -> aplica_prod RARP R 0:14:4f:fb:2c:60 is 172.24.0.8, aplica_prod
    Zolder -> aplica_prod TFTP Error: access violation
    aplica_prod -> BROADCAST TFTP Read "AC180008" (octet)
    Zolder -> aplica_prod TFTP Error: access violation
    aplica_prod -> BROADCAST TFTP Read "AC180008" (octet)
    Zolder -> aplica_prod TFTP Error: access violation
    aplica_prod -> BROADCAST TFTP Read "AC180008" (octet)
    Zolder -> aplica_prod TFTP Error: access violation
    aplica_prod -> BROADCAST TFTP Read "AC180008" (octet)
    Zolder -> aplica_prod TFTP Error: access violation
    aplica_prod -> BROADCAST TFTP Read "AC180008" (octet)
    ----END CONSOLE 2----
    Once start the snoop to produce messages make a ping to the IP's that should be assigned in the host file and all give a succesful answer BUT without start the Solaris 10 Instalation
    # ping 172.24.0.8
    172.24.0.8 is alive
    # ping 172.24.0.9
    172.24.0.9 is alive
    # ping 172.24.0.10
    172.24.0.10 is alive
    I really need help with this trouble ..and any help or advice will be thrully appreciated
    Thanks
    PD: any other required configuration file will be provided if is needed

  • Timed out waiting for Business process

    Hi,
    I created a web application using evision in JCAPS 512. It works properly. But some times i am getting an error message as
    "Timed out waiting for business process" when i try to access the web page usign url.
    But if i invoke page again then application works properly.
    I have increased server response timeout value also. But couldn't get
    the reason when it will occur.
    Please let me know what is the reason for this problem. If this error occurs please let me know is it possible to show some other page instead of displaying error to user.
    Regards
    Venkatesh.S

    Good day.
    I have a similar problem and I have managed to pinpoint when it fails but unfortunately I don't know how to fix it yet.
    In my scenario, I have 2 separate processes:
    the first process reads data from a Seebeyond SRE instance and stores it on a local Java CAPS queue.
    The second process is an EVision process that reads the data from this queue and displays it on a page.
    Whenever I am not connected to the network linking my Java CAPS instance to the Seebeyond SRE instance (first process cannot connect ) I get this problem on the EVision side every second time I request a page. This means I can view the first message on the queue and then I have to restart the Logical Host
    This doesn't make sense to me, since The EVision process is a completely separate process, deployed in it's own WAR file.

  • How to up the timeout setting to solve password reset portal error "Authentication gate timed out waiting for a challenge response"?

    Hi Everyone,
    We have the password portal up and running on one box and another server with FIM R2 and SharePoint 2010.  All is good with the exception that our end users typically get distracted during the password registration and/or reset process and receive:
    "An error has occurred. Please try again, and if the problem persists, contact your help desk or system administrator. (Error 3000) ".  The timeout kicks in after 5 minutes of inactivity in the browser.
    The FIM Service log shows the following:
    "Authentication gate timed out waiting for a challenge response".
    I have confirmed that the default password portal web.config setting is <add key="SessionTimeoutInMinutes" value="20" />.  
    We have also updated Microsoft.ResourceManagement.Service.exe.config per this
    article to the following but with no luck:
    <resourceManagementClient resourceManagementServiceBaseAddress="myAddress" timeoutInMilliseconds="600000" />
      <resourceManagementService externalHostName="myHost" dataReadTimeoutInSeconds="600" dataWriteTimeoutInSeconds="600"/> 
    We did not update the Windows SharePoint Servicesweb.config setting per the article about since we are on SharePoint 2010.  
    There is no NLB or firewall in front on this server.
    If anyone has any solution to how to solve this on FIM R2/SharePoint 2010 please let me know.
    Cheers!

    FIM_Admin,
    You could try changing the receiveTimeoutInSeconds parameter of the resourceManagementService node in your Microsoft.ResourceManagement.Service.exe.config file. However, you are warned not to do this unless instructed to by MS customer support. 
    http://msdn.microsoft.com/en-us/library/windows/desktop/ee652424(v=vs.100).aspx
    http://technet.microsoft.com/en-us/library/ff800821(v=ws.10).aspx

  • Time out period for PO approvals in worklist

    Hi all,
    Can any one know how to check the time out period for PO approvals in worklist other thant workflow builder like from system adminstrator or a query etc.,
    Thanks in advance,
    Regards,
    Pramod

    Hi,
    The following note might solve your problem :
    1330433.
    Thanks and Regards,
    Vignesh Ravikumar

  • Time out parameters for ABAP and JAVA instance

    Hello All,
    We are looking for Time out parameters for our ABAP and JAVA instances.
    As users are complaining that they are getting time out error
    while they are trying to access Cprojects from Portal.
    I was able to check/collect the ABAP instance parameters from SMICM Tcode.
    Can anybody tell me which parameters we need to look for JAVA instance.
    Thanks in advance.
    Regards,
    Amber S

    jstart/shutdownTimeout
    (jstartup/shutdown_timeout)
    Specifies the shutdown timeout, i.e. the grace period for the AS Java instance to shut down before the Java process terminates itself.  Unt is in Seconds. Default is 120
    j2ee/ms/connectTimeout
    (jstartup/wait_for_scs)
    Specifies the timeout for the first connection to the message server. The AS Java instance fails to start if this timeout expires.Unt is in Seconds.Default is  60
    j2ee/ms/reconnectTimeout
    (jstartup/wait_for_reconnect)
    Specifies the timeout for the reconnecting to the message server.The AS Java instance shuts down when this timeout expires.Unt is inSeconds.Default is  3600 (one hour)
    Thanks

  • Timed out waiting for the CRS stack to start on Second node.

    Hi,
    I am trying to setup 2 node 11gR2 RAC in vmware. I face the Timed out waiting for the CRS stack to start error on second node while running root.sh.I checked the cluster log files located in  /u01/app/11.2.0/grid/log/node1/alertnode2.log it shows as mentioned below.But when i logged into ASM instance and checked the diskgroup and it is in mount state on both nodes,So i am really confused why i ended up with error in 2nd node on running root.sh. Can anyone tell me how to correct this error or any other checking needs to be done?
    /u01/app/11.2.0/grid/log/node1/alertnode2.log
    [ohasd(23261)]CRS-2765:Resource 'ora.crsd' has failed on server 'node2'.
    2014-01-21 21:40:10.314
    [crsd(25309)]CRS-1006:The OCR location +DATA is inaccessible. Details in /u01/app/11.2.0/grid/log/node2/crsd/crsd.log.
    2014-01-21 21:40:11.217
    [ohasd(23261)]CRS-2765:Resource 'ora.crsd' has failed on server 'node2'.
    2014-01-21 21:40:12.422
    [crsd(25335)]CRS-1006:The OCR location +DATA is inaccessible. Details in /u01/app/11.2.0/grid/log/node2/crsd/crsd.log.
    2014-01-21 21:40:13.327
    [ohasd(23261)]CRS-2765:Resource 'ora.crsd' has failed on server 'node2'.
    2014-01-21 21:40:14.514
    [crsd(25356)]CRS-1006:The OCR location +DATA is inaccessible. Details in /u01/app/11.2.0/grid/log/node2/crsd/crsd.log.
    2014-01-21 21:40:15.439
    [ohasd(23261)]CRS-2765:Resource 'ora.crsd' has failed on server 'node2'.
    2014-01-21 21:40:15.440
    [ohasd(23261)]CRS-2771:Maximum restart attempts reached for resource 'ora.crsd'; will not restart.
    root.sh output
    [root@node2 ~]# /u01/app/11.2.0/grid/root.sh
    Running Oracle 11g root.sh script...
    The following environment variables are set as:
        ORACLE_OWNER= oracle
        ORACLE_HOME=  /u01/app/11.2.0/grid
    Enter the full pathname of the local bin directory: [/usr/local/bin]:
    The file "dbhome" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying dbhome to /usr/local/bin ...
    The file "oraenv" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying oraenv to /usr/local/bin ...
    The file "coraenv" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying coraenv to /usr/local/bin ...
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root.sh script.
    Now product-specific root actions will be performed.
    2014-01-21 21:37:55: Parsing the host name
    2014-01-21 21:37:55: Checking for super user privileges
    2014-01-21 21:37:55: User has super user privileges
    Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_p                   
    arams
    LOCAL ADD MODE
    Creating OCR keys for user 'root', privgrp 'root'..
    Operation successful.
    Adding daemon to inittab
    CRS-4123: Oracle High Availability Services has been started.
    ohasd is starting
    CRS-4402: The CSS daemon was started in exclusive mode but found an active CSS daemon on node 11gdb, number 1, and is terminating
    An active cluster was found during exclusive startup, restarting to join the cluster
    CRS-2672: Attempting to start 'ora.mdnsd' on 'node2'
    CRS-2676: Start of 'ora.mdnsd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.gipcd' on 'node2'
    CRS-2676: Start of 'ora.gipcd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.gpnpd' on 'node2'
    CRS-2676: Start of 'ora.gpnpd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.cssdmonitor' on 'node2'
    CRS-2676: Start of 'ora.cssdmonitor' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.cssd' on 'node2'
    CRS-2672: Attempting to start 'ora.diskmon' on 'node2'
    CRS-2676: Start of 'ora.diskmon' on 'node2' succeeded
    CRS-2676: Start of 'ora.cssd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.ctssd' on 'node2'
    CRS-2676: Start of 'ora.ctssd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.drivers.acfs' on 'node2'
    CRS-2676: Start of 'ora.drivers.acfs' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.asm' on 'node2'
    CRS-2676: Start of 'ora.asm' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.crsd' on 'node2'
    CRS-2676: Start of 'ora.crsd' on 'node2' succeeded
    CRS-2672: Attempting to start 'ora.evmd' on 'node2'
    CRS-2676: Start of 'ora.evmd' on 'node2' succeeded
    Timed out waiting for the CRS stack to start.
    Regards,
    007

    Hi,
    Are you trying to install on Vmware Workstation or Vmware Server?
    If you are using vmware server add below line in your .vmx file for both node
    scsi1.sharedBus = "VIRTUAL"
    First check which scsi serial number are you using as above I have selected scsi1 serial during disk addition, 

  • Imassage and face time says waiting for activation from 5 days, imassage and face time says waiting for activation from 5 days

    imassage and face time says waiting for activation from long time i tried reboot ,on/off but it says same

    Read here:
    http://support.apple.com/kb/TS4268

Maybe you are looking for

  • SAP B1 2007A PL05 on 64 bit  OS & SQL2005 Interfaces don't work

    We have installed SAP B1 2007 PL05 on 64 bit windows with 64 bit SQL2005 SP2. We have an interface to a Warehouse management system (Radio Beacon) and a custom interface to a legacy system.  The interfaces don't work.  We can not connect to the DIAPI

  • How can I edit and delete photos from my albums? I can't find a way to delete old photos...

    Can anyone help me delete photos? There are old blurry and duplicate photos that we are unable to delete...

  • How can I set the HTTPResponse in JSF

    Hi, I have created a hyperlink to display a popup xml document in Internet Explorer. The xmlPopupString is in the RequestBean1. The problem that I am having is that I do not know how to set the httpResponse to the following: <%@ page session="false"

  • Function and transaction

    Hi i have procedure with in that i am calling a function .Will this be a single transaction or 2 transaction in oracle ? thanks Alish

  • I think my phone is hacked

    Someone tried to access my online account the first day I got my phones. The carrier texted me. I rcvd snail mail that they tried to access it again and were given a temp password. I have blocked all access to my online account- I can't even access i