Selenium-server-standalone won't start firefox - a bug?

I am trying to figure out whether this is a packaging-bug or an upstream bug. Here is the symptom:
When launching selenium-server-standalone in the shell using:
$ java -jar /usr/share/selenium-server/selenium-server-standalone.jar -firefoxProfileTemplate /home/x/.mozilla/firefox/asdfas.selenium/ -log /home/x/selenium-sh.log
And then launching a little test using test.pl:
use strict;
use warnings;
use Time::HiRes qw(sleep);
use Test::WWW::Selenium;
use Test::More "no_plan";
use Test::Exception;
my $sel = Test::WWW::Selenium->new( host => "localhost",
port => 4444,
browser => "*chrome",
browser_url => "http://www.google.com" );
$sel->open_ok("http://www.google.com");
WAIT: {
for (1..60) {
if (eval { $sel->is_element_present("heythere") }) { pass; last WAIT }
sleep(1);
fail("timeout");
then firefox gets started and everyone is happy. However, when I start selenium server as a daemon, firefox simply won't start up and I don't know why. Here is the scenario:
# rc.d start selenium-server
My /etc/conf.d/selenium-server.conf:
SELENIUM_SERVER_USER=x
SELENIUM_SERVER_ARGS="-firefoxProfileTemplate /home/x/.mozilla/firefox/ennhqwww.selenium -log /home/x/selenium-rc.log"
Now launching the above perl script:
$ perl test.pl
Nothing happens, it just keeps idling at "starting firefox..."
Here is the logfile selenium-rc.log:
14:29:09.245 DEBUG [12] org.openqa.selenium.browserlaunchers.locators.BrowserLocator - Discovering Firefox 3...
14:29:09.299 DEBUG [12] org.openqa.selenium.browserlaunchers.locators.BrowserLocator - Checking whether Firefox 3 launcher at :'/usr/lib/firefox-5.0/firefox-bin' is valid...
14:29:09.299 DEBUG [12] org.openqa.selenium.browserlaunchers.locators.BrowserLocator - Discovered valid Firefox 3 launcher : '/usr/lib/firefox-5.0/firefox-bin'
14:29:09.301 INFO [12] org.openqa.selenium.server.BrowserSessionFactory - Allocated session 7a16510f87e24b269c72fb679be16071 for https://particulares.gruposantander.es/, launching...
14:29:09.556 DEBUG [12] org.openqa.selenium.server.browserlaunchers.ResourceExtractor - Extracting /customProfileDirCUSTFFCHROME to /tmp/customProfileDir7a16510f87e24b269c72fb679be16071
14:29:09.659 INFO [12] org.openqa.selenium.server.browserlaunchers.FirefoxChromeLauncher - Preparing Firefox profile...
14:29:11.213 INFO [12] org.openqa.selenium.server.browserlaunchers.FirefoxChromeLauncher - Launching Firefox...
14:29:11.226 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for window 'null' local frame 'null' for 1800 more secs
14:29:11.226 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for condition for 1000 more ms
14:29:12.238 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - got condition? : false
14:29:12.238 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for window 'null' local frame 'null' for 1799 more secs
14:29:12.238 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for condition for 1000 more ms
14:32:04.704 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - got condition? : false
14:32:04.704 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for window 'null' local frame 'null' for 1777 more secs
14:32:04.704 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for condition for 1000 more ms
It just keeps waiting for firefox. Notice I truncated the file in the middle, marked by (...) there is a good 20 seconds in there where the log just keeps showing waits. However, using the start-from-shell method above, I get the following selenium-sh.log:
14:32:18.484 DEBUG [12] org.openqa.selenium.browserlaunchers.locators.BrowserLocator - Discovering Firefox 3...
14:32:18.527 DEBUG [12] org.openqa.selenium.browserlaunchers.locators.BrowserLocator - Checking whether Firefox 3 launcher at :'/usr/lib/firefox-5.0/firefox-bin' is valid...
14:32:18.527 DEBUG [12] org.openqa.selenium.browserlaunchers.locators.BrowserLocator - Discovered valid Firefox 3 launcher : '/usr/lib/firefox-5.0/firefox-bin'
14:32:18.528 INFO [12] org.openqa.selenium.server.BrowserSessionFactory - Allocated session 57ac24f40c0f46bd9f1166c7f81f26f5 for https://particulares.gruposantander.es/, launching...
14:32:18.797 DEBUG [12] org.openqa.selenium.server.browserlaunchers.ResourceExtractor - Extracting /customProfileDirCUSTFFCHROME to /tmp/customProfileDir57ac24f40c0f46bd9f1166c7f81f26f5
14:32:18.867 INFO [12] org.openqa.selenium.server.browserlaunchers.FirefoxChromeLauncher - Preparing Firefox profile...
14:32:22.719 INFO [12] org.openqa.selenium.server.browserlaunchers.FirefoxChromeLauncher - Launching Firefox...
14:32:22.723 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for window 'null' local frame 'null' for 1800 more secs
14:32:22.724 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for condition for 1000 more ms
14:32:23.727 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - got condition? : false
14:32:23.727 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for window 'null' local frame 'null' for 1799 more secs
14:32:23.727 DEBUG [12] org.openqa.selenium.server.FrameGroupCommandQueueSet - waiting for condition for 1000 more ms
14:32:23.786 DEBUG [13] org.openqa.jetty.http.HttpConnection - new HttpConnection: Socket[addr=/0:0:0:0:0:0:0:1,port=44275,localport=4444]
14:32:23.787 DEBUG [13] org.openqa.jetty.http.HttpConnection - REQUEST from [email protected]:4444:
GET /selenium-server/core/selenium.css HTTP/1.1
Host: localhost
Anyone got an idea why firefox won't start if selenium is started via the rc.d script, or can someone at least help me find a way to troubleshoot why this is happening (i.e. logs, strace, etc.)?
I am pretty sure it is not an upstream issue, but if you tell me it is, then I will have to file a bug there.
Thanks!
Last edited by awayand (2011-07-02 06:18:58)

Under which user does the daemon run? If it is the same user under which you are able to manually start the test, it is most likely a environment problem. Otherwise it is probably permission related.
To fix a environment problem, try copying all `set` variables to the daemon's environment. For permission related, try `sudo -u daemonuser java -jar /usr/s...` and then debugging that.

Similar Messages

  • How do I get my bookmarks back, I downloaded version 4.0 that said it is compatible with all versions of OSx. Which it is not!!! So now it won't start FireFox, before I do anything else how do I get my bookmarks back?

    How do I get my bookmarks back, I downloaded version 4.0 that said it is compatible with all versions of OSx. Which it is not!!! So now it won't start FireFox, before I do anything else how do I get my bookmarks back?

    THe phone is NOT jail broken..   all i want to do is have it return back to how it was before i started the updae version process obviously it did not take  and now it is locked into plave the screen will not change.. after reboots and shut down when i turn it back on the same screeen appears  the cd disc with the music note over it and the arrow pointing upwards  and  a picture of the small end of the charge cord that fits into the actual compute..   The phoen is not jail broken  all i want is to get my phone back  so i can use it   i logged into i tunes and there is no where on the page that gives direction to return it back to its original format prior to trying to up grade .. whe at do i need to do to unlock the frozen compent and reutrn it back to its normal point prior to trying the upgrade

  • Xbmc-standalone won't start after update

    I updated and now xbmc service won't start. When i run startx on my admin user, I can get xbmc to start up, but it won't start as 'xbmc' anymore. When I `su xbmc` and try to run `startx` or `xbmc-standalone` I get the same error. Not sure what's going on.
    orwell% sudo systemctl status xbmc -l
    xbmc.service - Starts instance of XBMC using xinit
    Loaded: loaded (/usr/lib/systemd/system/xbmc.service; enabled)
    Active: inactive (dead) since Mon 2014-03-03 19:00:23 PST; 3s ago
    Process: 2012 ExecStart=/usr/bin/xinit /usr/bin/dbus-launch /usr/bin/xbmc-standalone -l /run/lirc/lircd -- :0 -nolisten tcp (code=exited, status=0/SUCCESS)
    Main PID: 2012 (code=exited, status=0/SUCCESS)
    Mar 03 19:00:20 orwell xinit[2012]: Initializing built-in extension DRI2
    Mar 03 19:00:20 orwell xinit[2012]: Loading extension GLX
    Mar 03 19:00:20 orwell xinit[2012]: (II) [KMS] Kernel modesetting enabled.
    Mar 03 19:00:21 orwell xinit[2012]: ERROR: Unable to create application. Exiting
    Mar 03 19:00:21 orwell xinit[2012]: ERROR: Unable to create application. Exiting
    Mar 03 19:00:22 orwell xinit[2012]: ERROR: Unable to create application. Exiting
    Mar 03 19:00:22 orwell xinit[2012]: XBMC has exited uncleanly 3 times in the last 1 seconds.
    Mar 03 19:00:22 orwell xinit[2012]: Something is probably wrong
    Mar 03 19:00:22 orwell xinit[2012]: /usr/bin/xinit: connection to X server lost
    Mar 03 19:00:22 orwell xinit[2012]: waiting for X server to shut down (EE) Server terminated successfully (0). Closing log file.
    I've looked through : https://bbs.archlinux.org/viewtopic.php?id=177770 and it seems to be a similar issue.
    Last edited by eyeemaye (2014-03-05 03:45:13)

    After today's update (version 12.3-11), I get a new error. For the record I've changed PAMName from 'login' to 'su' for debugging purposes.
    xbmc.service - Starts instance of XBMC using xinit
    Loaded: loaded (/usr/lib/systemd/system/xbmc.service; enabled)
    Active: inactive (dead) since Fri 2014-03-07 20:58:52 PST; 2min 33s ago
    Process: 3381 ExecStart=/usr/bin/xinit /usr/bin/dbus-launch /usr/bin/xbmc-standalone -l /run/lirc/lircd -- :0 -nolisten tcp vt7 (code=exited, status=0/SUCCESS)
    Main PID: 3381 (code=exited, status=0/SUCCESS)
    Mar 07 20:58:51 orwell pulseaudio[3443]: [pulseaudio] module.c: Failed to load module "module-device-restore" (argument: ""): initialization failed.
    Mar 07 20:58:51 orwell xinit[3381]: ERROR: Unable to create application. Exiting
    Mar 07 20:58:51 orwell pulseaudio[3469]: [pulseaudio] module-device-restore.c: Failed to open volume database '/var/lib/xbmc/.config/pulse/739ce619b49f4eb797280beb523b50fd-device-volumes': No space left on device
    Mar 07 20:58:51 orwell pulseaudio[3469]: [pulseaudio] module.c: Failed to load module "module-device-restore" (argument: ""): initialization failed.
    Mar 07 20:58:51 orwell xinit[3381]: ERROR: Unable to create application. Exiting
    Mar 07 20:58:51 orwell xinit[3381]: XBMC has exited uncleanly 3 times in the last 1 seconds.
    Mar 07 20:58:51 orwell xinit[3381]: Something is probably wrong
    Mar 07 20:58:51 orwell xinit[3381]: /usr/bin/xinit: connection to X server lost
    Mar 07 20:58:51 orwell xinit[3381]: waiting for X server to shut down (EE) Server terminated successfully (0). Closing log file.
    Mar 07 20:58:52 orwell systemd[3382]: pam_unix(su:session): session closed for user xbmc
    Last edited by eyeemaye (2014-03-08 05:19:34)

  • Compiz Standalone won't start

    Hi, I'd like to run Compiz as a standalone desktop manager. The Arch wiki has a very short section on this, https://wiki.archlinux.org/index.php/Co … ow_Manager, which suggests all that's needed is to edit ~/.xinitrc to start compiz.
    This doesn't work for me, and I simply end up at the CLI prompt with no on-screen error message or anything to indicate why compiz won't start. I'm not even 100% sure it is trying to start!?
    If I try to start compiz from the CLI prompt, I get the following error:
    compiz (core) - Fatal: Cannot open display
    If I start with startx, X will start, but compiz will not.
    Last edited by lightstream (2011-12-16 01:24:11)

    By display manager, do you mean something like KDE, XFCE etc?
    If so, then I would really like to just run compiz without any of these. I have got Compiz running OK under KDE, but it takes forever to boot up (ok 1 minute) and I just find KDE to be somewhat .. Kludgy (it has a dated feel IMO). Also there are some weird behaviours in Compiz under KDE. I'm currently using XFCE which is altogether nicer than KDE, but I can't get compiz to work with it at all.
    Here's my rc.conf:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # LANG in /etc/locale.conf takes precedence
    # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
    # startup and during the boot process. If set to 'no', the C locale is used.
    # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # Note: Using "localtime" is discouraged, using "" makes hwclock fall back
    # to the value in /var/lib/hwclock/adjfile
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # Note: if unset, the value in /etc/localtime is used unchanged
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_GB.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="UTC"
    TIMEZONE="Europe/London"
    KEYMAP="uk"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
    # Replace every !module by an entry as on the following line in a file in
    # /etc/modprobe.d:
    # blacklist module
    # See "man modprobe.conf" for details.
    MODULES=()
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for BTRFS volumes at startup
    USEBTRFS="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="scarab"
    # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
    # Wired network setup
    # - interface: name of device (required)
    # - address: IP address (leave blank for DHCP)
    # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
    # - broadcast: broadcast address (ignored for DHCP) (optional)
    # - gateway: default route (ignored for DHCP)
    # Static IP example
    # interface=eth0
    # address=192.168.0.2
    # netmask=255.255.255.0
    # broadcast=192.168.0.255
    # gateway=192.168.0.1
    # DHCP example
    # interface=eth0
    # address=
    # netmask=
    # gateway=
    interface=eth0
    address=192.168.1.102
    netmask=255.255.255.0
    broadcast=192.168.1.255
    gateway=192.168.1.1
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these netcfg profiles at boot-up. These are useful if you happen to
    # need more advanced network features than the simple network service
    # supports, such as multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    # If you are sure nothing else touches your hardware clock (such as ntpd or
    # a dual-boot), you might want to enable 'hwclock'. Note that this will only
    # make a difference if the hwclock program has been calibrated correctly.
    # If you use a network filesystem you should enable 'netfs'.
    DAEMONS=(syslog-ng sshd network crond dbus httpd mysqld)
    I'd appreciate any suggestions at this point, as I'm at a dead end, and Google is not helping.

  • ODBC server & agent won't start - J2EE install

    Hi all,
    I have installed the developer edition of CFMX7. I have
    tomcat running on my windows2000 server, so I downloaded the
    windows installer and chose the J2EE-war option. It runs just fine.
    I also installed the ODBC server, because I want to connect
    to MS Access databases with my developer edition. For that, I tried
    this:
    http://www.bpurcell.org/blog/index.cfm?mode=entry&entry=860.
    First problem was that after tomcat automatically deployed the war
    file, the folder 'SequeLink Setup' did not exist in the web-inf\db
    folder. So I renamed the war to zip, and checked - the file
    is present in the war. So I manually extracted the zip to a
    new directory. I ran the cfm script with the reference to this new
    directory, and the ODBC services were installed - hurray!
    But now the services do not want to start. I first got the
    error that the file was not found. It referenced to a slserver52
    folder, which had only two directories called 'logging' and
    'tracing', but no bin files whatsoever. There is however a
    slserver54 folder, which contains all kind of stuff. So I started
    regedit and changed all the references to 52 in 54, and rebooted
    the server. Still no luck: now I get a 1067 error on the server and
    an unknown error on the agent.
    Any ideas??

    That is just what I did, but that didn't help. The installer
    creates services that point to the slserver52 folder, but that
    should be slserver54. When I change the directory in the registry,
    the services won't start. The ODBC Agent sais:
    "Could not start the ColdFusion MX ODBC Agent service on
    Local Computer. The service did not return an error. This could be
    an internal Windows error or an internal service error. If the
    problem persists, please contact your system administrator."
    The ODBC Service returns the exact same error.

  • My proxy server software won't allow Firefox to run. Why?

    I have VPN4ALL proxy software for connecting to the internet. I use Google Chrome as a browser. I have an HP laptop computer. I have downloaded the Foxfire software. When I try to run the Foxfire browser, a window pops up and says that my proxy system won't allow it to run.
    The VPN4ALL tech people said to start Firefox and go to Tools>Options>Network Tab>Settings>Auto Detect Proxy>OK> OK and try again.
    I didn't find this string on Firefox's drop down window. Now what?

    Have you tried uploading by drag and drop to Finder/Go/iDisk/My iDisk/Web/Sites?
    You will lose features like hit counter, blog and photo comments etc by doing this.

  • Acrobat X Pro (standalone) Won't Start

    I'm running Win 7 ultimate w/ 8G mem., plenty of disk space, just bought Acrobat X Pro to replace VIII Pro.
    I uninstalled VIII, installed X. Seemed to work but when I clicked on the Acrobat X icon nothing happened. I was running Avira anti-virus. It identified hosts.exe as having malware, but I found out from a search that that was a false positive. Turned off the AV, disconnected from the Web, reinstalled, restarted computer. Same no-start problem. Tried several variations of all this, including using a new download, several clean re-installs, and twice choosing "repair installation" instead of new installation. None of which helped.
    Used AdbeArCleaner_v2.exe, got "successful" message, rebooted. Acrobat wtill wont start won't start. It asppears to have installed the printer driver OK and if I click on acrodist.exe, I get a flash screen. If I right click on a PDF and then on Open With and choose Adobe Acrobat, nothing happens. Try it with Adobe Reader, the PDF opens.
    What do I need to do to get Acrobat working?
    Thanks,

    Got it at www.bestwholesalesoftware.com <Adobe Acrobat X Professional – Best Wholesale Software PC & More>. They sent me a registration code that was accepted.
    Adobe LiveCycle ES2, which was apparently part of the installation process, works, but throws an error message when I try to preview the form as a PDF (There was a problem with Acrobat/Reader. If it is running, please exit and try again (1:1).

  • Newly installed firefox has left an blue "drive" icon on my (Mac) desktop that I cannot erase. When I click on firefox in applications, it always brings this up and won't start firefox directly. I cannot erase this "firefox" drive icon, it won't let me. E

    The icon is blue with a white firefox logo on it. My only options are to "Burn 'Firefox'" or "Eject 'Firefox'" when I click on it to edit it, but I cannot cut, paste, or move to trash. It won't let me. When I click on "Eject 'firefox'" it says "The disc firefox is in use and could not be ejected". Even when I am running no applications whatsoever.
    When I click on this icon, a small window appears with two icons in it: one the firefox browser icon, and the other the applications folder icon with an arrow inbetween the two. When I drag the icon into the application folder it tells me:
    "An item named 'firefox' already exists in this location. Do you want to replace it with the one you're moving?"
    And no matter how many times I "replace it" the icon never goes away.
    And no matter how many times I replace it, whenever I click on the firefox icon in applications, it brings up this tiny window on my desktop before it will actually start running the firefox web-browser. And it will never reload my previously saved tabs is also my main concern.
    == This happened ==
    Every time Firefox opened
    == a few weeks ago since I installed...

    Maybe you copied the icon show in the window to your application and into your dock directly. Try closing your Firefox again. Eject the disc again. Then go to your application folder. You should see Firefox with a circle and cross through it. Open it. It should open without the blue icon appearing on your desktop again.

  • SQL Server Service won't start on SQL Server 2008

    Hi everyone,
    I'm having trouble starting SQL Server service after stopping and starting the service. Before this happened, I created a Stored Procedure for marking all tables at once along with a maintenance plan for differential backup on all my databases based on the
    recommendation from this link, http://msdn.microsoft.com/en-us/library/ms253070.aspx.
    When I realized that the differential backup failed with some databases displaying (Restoring...) post-fix to the database name, I decided to stop SQL Server service and start it up. That is when I won't be able to start the service again.
    Is there a fix for starting the SQL Server service? Any help is very much appreciated.
    Additional information:
    - With administrator permission granted.
    - Service Pack 1 for SQL Server 2008 installed.
    - Using default database instance.
    - Tried C:\Program Files\Microsoft SQL Server\MSSQL.....\Binn>net start MSSQLSERVER /T3608 ( return msg: System error 5 has occurred. Access is denied.
    - When I start SQL Server service, I keep getting this dialog msg:
    "Windowns could not start the SQL Server (MSSQLSERVER) on Local Computer. For more information, review the System Event Log. If this is a non-Microsoft service, contact the service vendor, and refer to service-specific error code 1814."
    The event log does not explain or provide any hint on how to fix the problem.
    - Log msg:
    2010-07-22 10:30:25.09 Server      (c) 2005 Microsoft Corporation.
    2010-07-22 10:30:25.09 Server      All rights reserved.
    2010-07-22 10:30:25.09 Server      Server process ID is 6076.
    2010-07-22 10:30:25.10 Server      Authentication mode is MIXED.
    2010-07-22 10:30:25.10 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Log\ERRORLOG'.
    2010-07-22 10:30:25.11 Server      This instance of SQL Server last reported using a process ID of 5708 at 7/21/2010 3:27:01 PM (local) 7/21/2010 10:27:01 PM (UTC). This is an informational message only; no user action is required.
    2010-07-22 10:30:25.11 Server      Registry startup parameters:
         -d C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\master.mdf
         -e C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Log\ERRORLOG
         -l C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\mastlog.ldf
    2010-07-22 10:30:25.14 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2010-07-22 10:30:25.14 Server      Detected 4 CPUs. This is an informational message; no user action is required.
    2010-07-22 10:30:25.23 Server      Using locked pages for buffer pool.
    2010-07-22 10:30:25.43 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2010-07-22 10:30:25.73 Server      Node configuration: node 0: CPU mask: 0x000000000000000f Active CPU mask: 0x000000000000000f. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2010-07-22 10:30:25.81 spid7s      Starting up database 'master'.
    2010-07-22 10:30:26.14 spid7s      CHECKDB for database 'master' finished without errors on 2010-07-19 21:15:02.823 (local time). This is an informational message only; no user action is required.
    2010-07-22 10:30:26.18 spid7s      Resource governor reconfiguration succeeded.
    2010-07-22 10:30:26.18 spid7s      SQL Server Audit is starting the audits. This is an informational message. No user action is required.
    2010-07-22 10:30:26.18 spid7s      SQL Server Audit has started the audits. This is an informational message. No user action is required.
    2010-07-22 10:30:26.19 spid7s      FILESTREAM: effective level = 0, configured level = 0, file system access share name = 'MSSQLSERVER'.
    2010-07-22 10:30:26.28 spid7s      SQL Trace ID 1 was started by login "sa".
    2010-07-22 10:30:26.29 spid7s      Starting up database 'mssqlsystemresource'.
    2010-07-22 10:30:26.31 spid7s      The resource database build version is 10.00.2531. This is an informational message only. No user action is required.
    2010-07-22 10:30:26.43 spid10s     Starting up database 'model'.
    2010-07-22 10:30:26.43 spid7s      Server name is 'XXXXXXXXXXXXXX'. This is an informational message only. No user action is required.
    2010-07-22 10:30:26.47 spid10s     The database 'model' is marked RESTORING and is in a state that does not allow recovery to be run.
    2010-07-22 10:30:26.47 spid10s     Error: 927, Severity: 14, State: 2.
    2010-07-22 10:30:26.47 spid10s     Database 'model' cannot be opened. It is in the middle of a restore.
    2010-07-22 10:30:26.59 spid10s     Could not create tempdb. You may not have enough disk space available. Free additional disk space by deleting other files on the tempdb drive and then restart SQL Server. Check for additional errors in
    the event log that may indicate why the tempdb files could not be initialized.
    2010-07-22 10:30:26.59 spid10s     SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.

    Hello,
    Could you please copy the model.mdf and modellog.ldf from
    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Binn\Templates
    To
    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA
    Rebuilding the system databases you will lose lose logins, jobs, SSIS packages. You may have to restore or attach user databases.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Error 1069 - Server Service won't start

    I'm getting the following erro message when I try to start Central Pro Server:
    Could not start the Adobe Central Output Server Service on local computer.
    Error 1069 The Service did not start due to logon failure.
    I checked the services and it won't allow me to start this manually... any suggestions would be greatly appreciated!

    From the text error as well as the inability to manually start the server I'd suspect that the user-id or password defined on the Log On tab is incorrect. If you are on a Windows network don't forget that if you are using a Domain user-id that the domain name has to be included (DOMAIN\user-id).

  • WDS Server Service won't start - 'An error occurred trying to start the Windows Deployment Services Server.'

    I'm having issues installing starting the WDS server service on Win 2008 R2,  this is happening on multiple (all 2008 R2) systems on this domain so I'm beginning to think it's either AD or network related, in event viewer I get the following error.
    'An error occurred trying to start the Windows Deployment Services Server.'
    Error Information: 0x0906
    EventID : 257 
    single domain, single forest, 2008 R2 functional level, both system are virtual plugged into same vswitch on a flat network.
    any ideas what might be the issue?  I've never had an issue getting this working on many occasions before today and I've come to many a dead end looking at other articles thus far... 
    With WDS tracing enabled I get the following error information:
    [4304] 09:22:11: ===>Starting logging of module [WDSServer]
    [4304] 09:22:11: [UDPPorts] Policy: 1, Dynamic Port Range: 64001-65000.
    [4304] 09:22:11: [RPC] Using Tcp Port 5040 for Rpc Calls.
    [4304] 09:22:11: [RPC] Client Impersonation Logging=Disabled
    [4304] 09:22:11: [RPC] Host Name: sccm.domain.local
    [4304] 09:22:11: [RPC] NTLM/Kerberos Spn: ldap/sccm.domain.local
    [4304] 09:22:11: [RPC] Initialized
    [3756] 09:22:11: [RPC] Server Started.
    [4304] 09:22:11: [BINLSVC][RPC][Ep={5F4FB9F0-C0E3-41C1-AA00-9A7C690AC3A3}] Registered
    [4304] 09:22:11: [BINLSVC] Provider Initialized.
    [4304] 09:22:11: [WDSDDPS][RPC][Ep={FA0A27E1-C2BA-4B3B-94B2-025E82FFAA6D}] Registered
    [4304] 09:22:11: [WDSDDPS][RPC][Ep={011D24AC-CB3A-4739-A339-5D2E1B5306CE}] Registered
    [4304] 09:22:11: [51][WDSDDPS] [d:\w7rtm\base\ntsetup\opktools\wds\ddp\server\ddpprovider.cpp:196] Expression: , Win32 Error=0x906
    [4304] 09:22:11: [WDSDDPS][RPC][Ep={FA0A27E1-C2BA-4B3B-94B2-025E82FFAA6D}] Closed
    [4304] 09:22:11: [WDSDDPS][RPC][Ep={011D24AC-CB3A-4739-A339-5D2E1B5306CE}] Closed
    [4304] 09:22:11: [d:\w7rtm\base\ntsetup\opktools\wds\wdssrv\server\src\wdsprovider.cpp:144] Expression: , Win32 Error=0x906
    [4304] 09:22:11: [WDSDDPS] Initialization Failed (rc=2310)
    [4304] 09:22:11: [d:\w7rtm\base\ntsetup\opktools\wds\wdssrv\server\src\wdsprovhdl.cpp:172] Expression: , Win32 Error=0x906
    [4304] 09:22:11: [WDSDDPS] Deleted.
    [4304] 09:22:11: [d:\w7rtm\base\ntsetup\opktools\wds\wdssrv\server\src\wdsservice.cpp:178] Expression: , Win32 Error=0x906
    [4304] 09:22:11: [Udp] Listen Shutdown.
    [3756] 09:22:11: [RPC] Server terminated (rc=0)
    [4304] 09:22:11: [RPC] Listen Stopped.
    [4304] 09:22:11: [BINLSVC] Shutting down
    [4304] 09:22:11: [BINLSVC][RPC][Ep={5F4FB9F0-C0E3-41C1-AA00-9A7C690AC3A3}] Closed
    [4304] 09:22:11: [BINLSVC] Deleted.

    It seems I've found out the solution myself,  the issue seems to be caused when DHCP and WDS are on the same server, The installation must identify this during the first installation of WDS but not on subsequent installations, the method to
    get it working again is:
    1.      
    Install WDS Role (using defaults)
    2.      
    Make the following registry change:
    HKLM\SYSTEM\CurrentControlSet\services\WDSServer\Providers\WDSPXE\UseDhcpPorts  =  0
    3.      
    Run the following command line to initialize Windows Deployment Services:
    wdsutil /initialize-server /reminst:D:\RemoteInstall
    4.      
    Run the following command to enable the DHCP port registry setting
    wdsutil /Set-Server /UseDHCPPorts:No /DHCPOption60:Yes

  • Application Server 8 won't start on Solaris 10

    I used the JES installer installed the application server ... no errors
    but when I try to start the app server I get this
    # ./asadmin start-domain domain1
    Starting Domain domain1, please wait.
    Log redirected to /var/opt/SUNWappserver/domains/domain1/logs/server.log.
    Please enter password>
    Please enter the master password>
    no asnss in java.library.path
    So why doesn't it have this in the path? Can anyone shed light on this?
    I have set /opt/SUNWappserver/appserver/bin in my path

    I am getting the same error. I installed Solaris 10 and when I try to start the bundled appserver, it wouldn't start. I removed it and installed again from JES 05Q1. when I tried to start domain1 it didn't exist. Nor did the .../domains/ directory. I created directory and when I tried to create domain1 I got same error 'no asnss in java.library.path'
    Any ideas what is wrong?

  • Nuance Sppech server service won't start

    Hi All,
    i installed Nuance ASR/TTS and tried to start the Speech Service and its not starting. please see the error below:
    if anyone has face the same issue, please suggest.
    regards
    Munish

    Hi Munish,
    By the way did you check if you have a valid License running in Nuance server, please check the expiry date also as its a time bound license.
    Thanks,
    Anand
    Please rate helpful posts !!

  • Live View Won't Start - Firefox flash Plug In

    Everytime I try to start Live View I get a message saying 'Flash Plugin was not found. To view Live View install the Firefox Flash plug in from www.adobe.com. I click on the link and install the plugin but I still get the same error message.
    Any help?

    Good catch! Glad you got things working again.

  • Safari won't start, Firefox will

    This all started while traveling this week.  I tried to get connected at a hotel and the WiFi signal I used (the airport's) didn't want to launch the sign-in page.  I ever got it to work but later at another location, Safari was hung and I couldn't close it without forcing it.  I was successful in getting Firefo to work however.  I have rebooted and reparied permissions to no avail.  In addition, Mail hangs in an endless sync with Gmail and Exchange.  Not sure what is going on. 
    Here is the problem report for Safari:
    Date/Time:       2011-12-02 22:57:31 -0500
    OS Version:      10.7.2 (Build 11C74)
    Architecture:    x86_64
    Report Version:  9
    Command:         Safari
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Version:         5.1.1 (7534.51.22)
    Build Version:   3
    Project Name:    WebBrowser
    Source Version:  7534051022000000
    Parent:          launchd [117]
    PID:             1222
    Event:           hang
    Duration:        2.06s
    Steps:           21 (100ms sampling interval)
    Pageins:         1
    Pageouts:        0
    Process:         Safari [1222]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:    x86_64
    UID:             501
      Thread 0x10651      DispatchQueue 1
      User stack:
        21 ??? (in Safari) [0x106ecef24]
          21 SafariMain + 197 (in Safari) [0x7fff84b1fffb]
            21 NSApplicationMain + 398 (in AppKit) [0x7fff87857637]
              21 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364 (in AppKit) [0x7fff875e3886]
                21 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141 (in AppKit) [0x7fff875e3943]
                  21 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217 (in AppKit) [0x7fff875e3a28]
                    21 loadNib + 322 (in AppKit) [0x7fff875e452f]
                      21 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245 (in AppKit) [0x7fff875edf9b]
                        21 -[NSSet makeObjectsPerformSelector:] + 274 (in CoreFoundation) [0x7fff84604262]
                          21 -[NSObject performSelector:] + 49 (in CoreFoundation) [0x7fff846042e1]
                            21 -[AppController awakeFromNib] + 1288 (in Safari) [0x7fff84927045]
                              21 Safari::ExtensionsController::reloadAllExtensions() + 54 (in Safari) [0x7fff84a4d9e2]
                                21 Safari::ExtensionsController::loadInstalledExtensions() + 287 (in Safari) [0x7fff84a4ce9d]
                                  21 Safari::ExtensionsController::extensionFromDictionaryRepresentation(Safari::CF: :Dictionary const&, bool&) + 291 (in Safari) [0x7fff84a4bed7]
                                    21 Safari::ExtensionExtractor::extractExtension(Safari::SURL const&, Safari::ExtensionExtractorClient&, Safari::ExtensionExtractor::CertificateRevocationCheckType, ***::PassRefPtr<Safari::CertificateRevocationObserver>) + 69 (in Safari) [0x7fff84a42937]
                                      21 Safari::ExtensionExtractor::ExtensionExtractor(Safari::SURL const&, Safari::ExtensionExtractor::CertificateRevocationCheckType, ***::PassRefPtr<Safari::CertificateRevocationObserver>) + 186 (in Safari) [0x7fff84a44544]
                                        21 Safari::ExtensionExtractor::verify(Safari::ExtensionExtractor::CertificateRevoc ationCheckType, ***::PassRefPtr<Safari::CertificateRevocationObserver>) + 504 (in Safari) [0x7fff84a43246]
                                          21 Safari::Certificate::isValidDeveloperCertificate(double, Safari::Certificate const*) const + 214 (in Safari) [0x7fff849ed072]
                                            21 Safari::Certificate::evaluateAppleIssuedCertificateChain(double, Safari::Certificate const*, Safari::Certificate::EvaluationFlags) const + 416 (in Safari) [0x7fff849ed692]
                                              21 SecTrustEvaluate + 49 (in Security) [0x7fff83288bb7]
                                                21 Security::KeychainCore::Trust::evaluate(bool) + 2086 (in Security) [0x7fff832894e0]
                                                  21 Security::CssmClient::TPImpl::certGroupVerify(Security::CertGroup const&, Security::TPVerifyContext const&, Security::TPVerifyResult*) + 133 (in Security) [0x7fff8328f18b]
                                                    21 CSSM_TP_CertGroupVerify + 111 (in Security) [0x7fff8328f92b]
                                                      21 _ZL20cssm_CertGroupVerifylllPK14cssm_certgroupPK22cssm_tp_verify_contextP29cssm _tp_verify_context_result + 129 (in Security) [0x7fff8328fb51]
                                                        21 AppleTPSession::CertGroupVerify(long, long, cssm_certgroup const&, cssm_tp_verify_context const*, cssm_tp_verify_context_result*) + 3262 (in Security) [0x7fff832908ba]
                                                          21 tpVerifyCertGroupWithOCSP + 3250 (in Security) [0x7fff8329ecb2]
                                                            21 ocspdFetch + 108 (in Security) [0x7fff832a0d7c]
                                                              21 ocsp_client_ocspdFetch + 157 (in Security) [0x7fff832a1267]
                                                                21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 hndl_mach_scall64 + 19 (in mach_kernel) [0xffffff80002d8383]
          21 thread_set_child + 336 (in mach_kernel) [0xffffff80002ae8a0]
            21 mach_msg_overwrite_trap + 184 (in mach_kernel) [0xffffff800021bb58]
              21 ipc_kmsg_send + 416 (in mach_kernel) [0xffffff8000214960]
                21 ipc_mqueue_send + 306 (in mach_kernel) [0xffffff8000215cf2]
                  21 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                    21 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                      21 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x10656      DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x1065a    
      User stack:
        21 thread_start + 13 (in libsystem_c.dylib) [0x7fff8436fb75]
          21 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8436c8bf]
            21 WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 9 (in WebCore) [0x7fff88ae20cb]
              21 WebCore::IconDatabase::iconDatabaseSyncThread() + 489 (in WebCore) [0x7fff88ae22bd]
                21 WebCore::IconDatabase::syncThreadMainLoop() + 375 (in WebCore) [0x7fff88ae48e5]
                  21 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a834bca]
      Kernel stack:
        21 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          21 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            21 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              21 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                21 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  21 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    21 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1065c    
      User stack:
        21 thread_start + 13 (in libsystem_c.dylib) [0x7fff8436fb75]
          21 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8436c8bf]
            21 thread_fun + 24 (in QuartzCore) [0x7fff8af4e4a9]
              21 CA::Render::Server::server_thread(void*) + 184 (in QuartzCore) [0x7fff8af4e569]
                21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Binary Images:
             0x106ece000 -        0x106ecefff  com.apple.Safari 5.1.1 (7534.51.22) <8DB30E4C-22B6-3BCE-A6E7-580F13B8903D> /Applications/Safari.app/Contents/MacOS/Safari
          0x7fff83256000 -     0x7fff8352eff7  com.apple.security 7.0 (55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
          0x7fff8431e000 -     0x7fff843fbfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff84913000 -     0x7fff84da2ff7  com.apple.Safari.framework 7534 (7534.51.22) <CD187BAF-2088-32CF-BCD3-E4057351A821> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
          0x7fff875d3000 -     0x7fff881d4ff7  com.apple.AppKit 6.7.2 (1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff88ade000 -     0x7fff897e4fef  com.apple.WebCore 7534.51 (7534.51.22) <352D30ED-1D1D-390E-B7CB-18E954485FD3> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8af4c000 -     0x7fff8b0ebfff  com.apple.QuartzCore 1.7 (270.0) <E8FC9AA4-A5CB-384B-AD29-7190A1387D3E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         AddressBookSourceSync [430]
    Path:            /System/Library/Frameworks/AddressBook.framework/Versions/A/Resources/AddressBo okSourceSync.app/Contents/MacOS/AddressBookSourceSync
    Architecture:    x86_64
    UID:             501
      Thread 0x30db       DispatchQueue 1
      User stack:
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x30e8       DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Binary Images:
             0x10bb96000 -        0x10bb98fff  com.apple.AddressBookSourceSync 1.1 (1062) <9CFACF38-00A9-3BB7-8F4D-AB6D86D9F611> /System/Library/Frameworks/AddressBook.framework/Versions/A/Resources/AddressBo okSourceSync.app/Contents/MacOS/AddressBookSourceSync
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         AirPort Base Station Agent [163]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    UID:             501
      Thread 0x4ad        DispatchQueue 1
      User stack:
        21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
          21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x4bf        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x4c4      
      User stack:
      Kernel stack:
        21 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Thread 0x4c5      
      User stack:
      Kernel stack:
        21 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          21 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            21 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              21 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                21 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  21 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    21 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x100681000 -        0x100698fff  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <0D37CC05-D1C6-3C6C-BACD-A88D4BD4C3CD> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         aosnotifyd [80]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    UID:             0
      Thread 0x22c        DispatchQueue 1
      User stack:
        21 start + 52 (in aosnotifyd) [0x109e3f0bc]
          21 main + 74 (in aosnotifyd) [0x109e469f4]
            21 -[AOSNotificationDaemon startup] + 1294 (in aosnotifyd) [0x109e467bb]
              21 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8cac904f]
                21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                  21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                    21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                      21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x2b4        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x34e      
      User stack:
        21 thread_start + 13 (in libsystem_c.dylib) [0x7fff8436fb75]
          21 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8436c8bf]
            21 __NSThread__main__ + 1575 (in Foundation) [0x7fff8cb17776]
              21 -[NSThread main] + 68 (in Foundation) [0x7fff8cb177fe]
                21 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in Foundation) [0x7fff8cb230ab]
                  21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                    21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                      21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                        21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x69b      
      User stack:
      Kernel stack:
        21 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Binary Images:
             0x109e3d000 -        0x109e7efff  aosnotifyd ??? (???) <750811D8-1A2D-3F5A-B157-8A35B8FB04DB> /usr/sbin/aosnotifyd
          0x7fff8431e000 -     0x7fff843fbfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8cabd000 -     0x7fff8cdd6ff7  com.apple.Foundation 6.7.1 (833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         applepushserviced [79]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
    Architecture:    x86_64
    UID:             0
      Thread 0x22b        DispatchQueue 1
      User stack:
      Kernel stack:
        21 hndl_mach_scall64 + 19 (in mach_kernel) [0xffffff80002d8383]
          21 thread_set_child + 336 (in mach_kernel) [0xffffff80002ae8a0]
            21 mach_msg_overwrite_trap + 184 (in mach_kernel) [0xffffff800021bb58]
              21 ipc_kmsg_send + 416 (in mach_kernel) [0xffffff8000214960]
                21 ipc_mqueue_send + 306 (in mach_kernel) [0xffffff8000215cf2]
                  21 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                    21 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                      21 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x250        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x680      
      User stack:
      Kernel stack:
        21 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Thread 0x109ee    
      User stack:
        12 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8436fb85]
          12 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8a835192]
      Kernel stack:
        12 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1680]
      Binary Images:
             0x10ab14000 -        0x10ab81fff  applepushserviced ??? (???) <846618F2-7FE6-374E-9D29-F132E254B130> /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
          0x7fff8431e000 -     0x7fff843fbfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         AppleSpell [210]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    UID:             501
      Thread 0x771        DispatchQueue 1
      User stack:
        21 ??? (in AppleSpell) [0x1065b7cf8]
          21 ??? (in AppleSpell) [0x1065b7faa]
            21 -[NSSpellServer run] + 74 (in Foundation) [0x7fff8cc19ca6]
              21 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff845b17ff]
                21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                  21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                    21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                      21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x775        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Binary Images:
             0x1065b6000 -        0x106672ff7  com.apple.AppleSpell 1.7 (131) <EE32AA22-F58E-3A4C-8BE4-7E2266AF45FC> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8cabd000 -     0x7fff8cdd6ff7  com.apple.Foundation 6.7.1 (833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         autofsd [77]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    UID:             0
      Thread 0x248        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x249      
      User stack:
      Kernel stack:
        21 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Binary Images:
             0x10cf15000 -        0x10cf16fff  autofsd ??? (???) <D0C5622F-0C60-3045-A1C2-F140785A79C3> /usr/libexec/autofsd
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         awacsd [47]
    Path:            /usr/sbin/awacsd
    Architecture:    x86_64
    UID:             0
      Thread 0x17d        DispatchQueue 1
      User stack:
      Kernel stack:
        21 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x17e        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x9a3        DispatchQueue 13
      User stack:
        21 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8436fb85]
          21 _pthread_wqthread + 316 (in libsystem_c.dylib) [0x7fff8436e3da]
            21 _dispatch_worker_thread2 + 198 (in libdispatch.dylib) [0x7fff8de07760]
              21 _dispatch_queue_invoke + 54 (in libdispatch.dylib) [0x7fff8de07f66]
                21 _dispatch_queue_drain + 264 (in libdispatch.dylib) [0x7fff8de0810a]
                  21 _dispatch_call_block_and_release + 18 (in libdispatch.dylib) [0x7fff8de068ba]
                    21 ??? (in awacsd) [0x102ee1055]
                      21 ??? (in awacsd) [0x102ee102f]
                        21 ??? (in awacsd) [0x102edcc73]
                          21 ??? (in awacsd) [0x102edcb80]
                            21 SSLHandshake + 107 (in Security) [0x7fff832af5c3]
                              21 SSLHandshakeProceed + 390 (in Security) [0x7fff832af759]
                                21 SSLProcessProtocolMessage + 82 (in Security) [0x7fff832afd6b]
                                  21 SSLProcessHandshakeRecord + 330 (in Security) [0x7fff832aff0a]
                                    21 SSLProcessCertificate + 303 (in Security) [0x7fff832b8161]
                                      21 sslVerifyCertChain + 1104 (in Security) [0x7fff832b8699]
                                        21 SecTrustEvaluate + 49 (in Security) [0x7fff83288bb7]
                                          21 Security::KeychainCore::Trust::evaluate(bool) + 2086 (in Security) [0x7fff832894e0]
                                            21 Security::CssmClient::TPImpl::certGroupVerify(Security::CertGroup const&, Security::TPVerifyContext const&, Security::TPVerifyResult*) + 133 (in Security) [0x7fff8328f18b]
                                              21 CSSM_TP_CertGroupVerify + 111 (in Security) [0x7fff8328f92b]
                                                21 _ZL20cssm_CertGroupVerifylllPK14cssm_certgroupPK22cssm_tp_verify_contextP29cssm _tp_verify_context_result + 129 (in Security) [0x7fff8328fb51]
                                                  21 AppleTPSession::CertGroupVerify(long, long, cssm_certgroup const&, cssm_tp_verify_context const*, cssm_tp_verify_context_result*) + 3262 (in Security) [0x7fff832908ba]
                                                    21 tpVerifyCertGroupWithOCSP + 3250 (in Security) [0x7fff8329ecb2]
                                                      21 ocspdFetch + 108 (in Security) [0x7fff832a0d7c]
                                                        21 ocsp_client_ocspdFetch + 157 (in Security) [0x7fff832a1267]
                                                          21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 hndl_mach_scall64 + 19 (in mach_kernel) [0xffffff80002d8383]
          21 thread_set_child + 336 (in mach_kernel) [0xffffff80002ae8a0]
            21 mach_msg_overwrite_trap + 184 (in mach_kernel) [0xffffff800021bb58]
              21 ipc_kmsg_send + 416 (in mach_kernel) [0xffffff8000214960]
                21 ipc_mqueue_send + 306 (in mach_kernel) [0xffffff8000215cf2]
                  21 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                    21 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                      21 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x102ed0000 -        0x102f27ff7  awacsd ??? (???) <44F38E7E-CF70-3890-B333-5AB4791EC2E7> /usr/sbin/awacsd
          0x7fff83256000 -     0x7fff8352eff7  com.apple.security 7.0 (55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
          0x7fff8431e000 -     0x7fff843fbfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         blued [22]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    UID:             0
      Thread 0x125        DispatchQueue 1
      User stack:
        21 ??? (in blued) [0x10237ad34]
          21 ??? (in blued) [0x1023b03df]
            21 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff8cac8f3b]
              21 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8cac904f]
                21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                  21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                    21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                      21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x130        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x1cc      
      User stack:
      Kernel stack:
        21 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Binary Images:
             0x102379000 -        0x10242afff  blued ??? (???) <C641D991-98F1-3D86-9F8B-F9A9E4B2C8C0> /usr/sbin/blued
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8cabd000 -     0x7fff8cdd6ff7  com.apple.Foundation 6.7.1 (833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         com.apple.dock.extra [148]
    Path:            /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
    Architecture:    x86_64
    UID:             501
      Thread 0x487        DispatchQueue 1
      User stack:
        21 ??? (in com.apple.dock.extra) [0x1086c3974]
          21 xpc_service_main + 440 (in XPCService) [0x7fff832098b9]
            21 NSApplicationMain + 867 (in AppKit) [0x7fff8785780c]
              21 -[NSApplication run] + 470 (in AppKit) [0x7fff875d862d]
                21 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff875dbcf5]
                  21 _DPSNextEvent + 659 (in AppKit) [0x7fff875dc3f1]
                    21 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8eff44ca]
                      21 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8eff463d]
                        21 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8efed3d3]
                          21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                            21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                              21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                                21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x48e        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Binary Images:
             0x1086c2000 -        0x1086c6fff  com.apple.dock.extra 1.0 (1) <88FC5646-1F5B-3B37-AE2D-C3202B74EEB9> /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
          0x7fff83208000 -     0x7fff8320eff7  com.apple.XPCService 1.0 (1) <8D0725AE-BF0B-31BE-9189-17191AF13001> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff875d3000 -     0x7fff881d4ff7  com.apple.AppKit 6.7.2 (1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8efeb000 -     0x7fff8f30ffff  com.apple.HIToolbox 1.8 (???) <A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    Process:         configd [16]
    Path:            /usr/libexec/configd
    Architecture:    x86_64
    UID:             0
      Thread 0xed         DispatchQueue 1
      User stack:
        21 ??? (in configd) [0x100c89fcc]
          21 ??? (in configd) [0x100c8a783]
            21 ??? (in configd) [0x100c8b088]
              21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                  21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                    21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0xee         DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 __select_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff8a834e06]
      Kernel stack:
        21 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Thread 0xf0       
      User stack:
        21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
          21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x103      
      User stack:
        21 thread_start + 13 (in libsystem_c.dylib) [0x7fff8436fb75]
          21 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8436c8bf]
            21 ??? (in configd) [0x100c963dd]
              21 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff845b17ff]
                21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                  21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                    21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                      21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x12c      
      User stack:
      Kernel stack:
        21 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Thread 0x12e      
      User stack:
        21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
          21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x109cf    
      User stack:
        21 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8436fb85]
          21 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8a835192]
      Kernel stack:
        21 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1680]
      Binary Images:
             0x100c89000 -        0x100cb2ff7  configd ??? (???) <84BD20D4-228D-30B4-82B5-EB45C4AD762B> /usr/libexec/configd
          0x7fff8431e000 -     0x7fff843fbfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         coreaudiod [108]
    Path:            /usr/sbin/coreaudiod
    Architecture:    x86_64
    UID:             202
      Thread 0x300        DispatchQueue 1
      User stack:
        21 ??? (in coreaudiod) [0x1061abac0]
          21 ??? (in coreaudiod) [0x106213f54]
            21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
              21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                  21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x302        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x318      
      User stack:
        21 thread_start + 13 (in libsystem_c.dylib) [0x7fff8436fb75]
          21 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8436c8bf]
            21 ??? (in coreaudiod) [0x10621e0da]
              21 ??? (in coreaudiod) [0x106217be6]
                21 ??? (in coreaudiod) [0x106217c76]
                  21 ??? (in coreaudiod) [0x106217aba]
                    21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                      21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                        21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                          21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x109d2    
      User stack:
        21 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8436fb85]
          21 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8a835192]
      Kernel stack:
        21 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1680]
      Thread 0x109d5    
      User stack:
        21 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8436fb85]
          21 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8a835192]
      Kernel stack:
        21 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1680]
      Binary Images:
             0x1061aa000 -        0x10626afff  coreaudiod ??? (???) <2710F68D-1A44-3EC0-B29D-D627DDDD1FBC> /usr/sbin/coreaudiod
          0x7fff8431e000 -     0x7fff843fbfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         coreservicesd [29]
    Path:            /System/Library/CoreServices/coreservicesd
    Architecture:    x86_64
    UID:             0
      Thread 0x156        DispatchQueue 1
      User stack:
        21 ??? (in coreservicesd) [0x10ee2de98]
          21 _CoreServicesServerMain + 747 (in CarbonCore) [0x7fff82e57bd5]
            21 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff845b17ff]
              21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                  21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                    21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x159        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x1ab      
      User stack:
      Kernel stack:
        21 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          21 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            21 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              21 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                21 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  21 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    21 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1ac      
      User stack:
      Kernel stack:
        21 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          21 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            21 read_nocancel + 120 (in mach_kernel) [0xffffff8000561e18]
              21 write + 209 (in mach_kernel) [0xffffff8000561711]
                21 get_pathbuff + 3895 (in mach_kernel) [0xffffff8000323c97]
                  21 tsleep + 91 (in mach_kernel) [0xffffff800055294b]
                    21 wakeup + 632 (in mach_kernel) [0xffffff8000552568]
                      21 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                        21 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                          21 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x10ee2d000 -        0x10ee2dfff  coreservicesd ??? (???) <33B5678A-9634-35AC-AD32-8506C028C35B> /System/Library/CoreServices/coreservicesd
          0x7fff82dbb000 -     0x7fff830d7ff7  com.apple.CoreServices.CarbonCore 960.18 (960.18) <6020C3FB-6125-3EAE-A55D-1E77E38BEDEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         cupsd [50]
    Path:            /usr/sbin/cupsd
    Architecture:    x86_64
    UID:             0
      Thread 0x20e        DispatchQueue 1
      User stack:
        21 ??? (in cupsd) [0x1017c5118]
          21 ??? (in cupsd) [0x1017de9fc]
            21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x253        DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x29d      
      User stack:
        21 thread_start + 13 (in libsystem_c.dylib) [0x7fff8436fb75]
          21 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8436c8bf]
            21 ??? (in cupsd) [0x1018098f8]
              21 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff845b17ff]
                21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                  21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                    21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                      21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Binary Images:
             0x1017c4000 -        0x101823ff7  cupsd ??? (???) <5E55F780-4CFE-3695-A36E-0825D44E4165> /usr/sbin/cupsd
          0x7fff8431e000 -     0x7fff843fbfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8de05000 -     0x7fff8de13fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         CVMServer [95]
    Path:            /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer
    Architecture:    x86_64
    UID:             0
      Thread 0x2d3      
      User stack:
        21 ??? (in CVMServer) [0x103c7c550]
          21 ??? (in CVMServer) [0x103c81ad4]
            21 mach_msg_server + 413 (in libsystem_kernel.dylib) [0x7fff8a833238]
              21 mach_msg_overwrite_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a833686]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Binary Images:
             0x103c7b000 -        0x103c84fff  CVMServer ??? (???) <41879FB3-0D73-307C-8A5E-D1FF1A65A8F0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
    Process:         DashboardClient [1099]
    Path:            /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
    Architecture:    x86_64
    UID:             501
      Thread 0xd096       DispatchQueue 1
      User stack:
        21 ??? (in DashboardClient) [0x108d9cff8]
          21 ??? (in DashboardClient) [0x108da0e85]
            21 -[NSApplication run] + 470 (in AppKit) [0x7fff875d862d]
              21 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff875dbcf5]
                21 _DPSNextEvent + 659 (in AppKit) [0x7fff875dc3f1]
                  21 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8eff44ca]
                    21 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8eff463d]
                      21 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8efed3d3]
                        21 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff845a1ae6]
                          21 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff845a22d4]
                            21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
                              21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0xd09c       DispatchQueue 2
      User stack:
        21 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8de0714e]
          21 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8a8357e6]
      Kernel stack:
        21 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0xd0a6     
      User stack:
      Kernel stack:
        21 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          21 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            21 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              21 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                21 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  21 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    21 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0xd0ae     
      User stack:
        21 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff84599b6c]
          21 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a83367a]
      Kernel stack:
        21 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0xd0b1     
      User stack:
        21 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a834bca]
      Kernel stack:
        21 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          21 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa9b]
            21 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              21 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                21 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  21 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    21 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0xd0c0     
      User stack:
      Kernel stack:
        21 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Binary Images:
             0x108d9c000 -        0x108da2fff  com.apple.dashboard.client 1.8 (1.8) <53D11DFD-1F9A-3DB2-95E7-F5C53830945F> /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
          0x7fff84569000 -     0x7fff8473dfff  com.apple.CoreFoundation 6.7.1 (635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff875d3000 -     0x7fff881d4ff7  com.apple.AppKit 6.7.2 (1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8a81e000 -     0x7fff8a83efff  libsystem_kernel.dylib ??? (???) <C56819BB-3779-3726-B610

    The cache is noted in the crash report.
    Go to ~/Library/Caches/com.apple.Safari
    Move the Cache.db file from the com.apple.Safari folder to the Trash.
    Version:         5.1.1 (7534.51.22)  < from the crash report
    The Safari 5.1.2 update is available and may help. Click your Apple menu (top left in your screen) then from the drop down menu click Software Update...
    Restart the Mac after the updates are installed then try Safari.
    ~ (Tilde) character represents the Home folder.
    For LIon:   To find the Home folder in OS X Lion, open the Finder, hold the Option key, and choose Go > Library

Maybe you are looking for

  • Server error when calling the DatabaseController.replaceConnection() method

    <p>I am receiving the error message below when calling the DatabaseController.replaceConnection() method. Can anyone tell me what may be the cause of this? The code being executed is below the error message. </p> <p> Thank you. </p> <pre> A server er

  • I'm getting this error message for iMessage

    "Unable to register because address is already in use". I'm somewhat of an apple novice, so go slowly! Just bought iPad mini on Friday!

  • HT1353 Understanding docking ports and pins

    I have an iPod nano 2nd gen, an iPod touch 2nd gen, and now An iPhone 4 and an iPad 3rd gen. I'm trying to figure out charging capabilities with these because the cords don't interchange and I'm trying to find docks for certain devices. Is it by pins

  • [SOLVED] How to tell systemd to start decrypting as early as possible?

    Hello there, now that gnome got updated to 3.6 I had to finally convert to systemd. My system is encrypted and some of the data (for example my music collection) is on another hard disk which is also encrypted, although it cat be opened with a key fi

  • PermGen - Error

    Hi, i experience for the second time a complete hanging application server. Here the last log-entries: 06/09/21 09:26:56 Exception in thread "RMI RenewClean-[10.0.0.117:2714]" java.lang.OutOfMemoryError: PermGen space 06/09/21 09:27:03 Exception in t