Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

com.apple.CoreSimulator.CoreSimulatorService - Crash (18 times)

My 2020 iMac is behaving very unstable with a lot of stalls, beachballs, slowdowns, crashes and random reboots.


Running EtreCheck and looking at Console running I'm noticing a lot of CoreSimulatorService activity going on.


Any help would be most welcome.


EtreCheck reports the following...


   2020-11-01 11:41:32 com.apple.CoreSimulator.CoreSimulatorService - Crash (18 times)

        Executable: /Library/Developer/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc/Contents/MacOS/com.apple.CoreSimulator.CoreSimulatorService

        Details: 

            *** Terminating app due to uncaught exception 'NSInternalInconsistency

            Exception', reason: 'Failed to get path for default_devices plist.'

            terminating with uncaught exception of type NSException

            abort() called


And here is a snippet from the Console...


Nov 2 01:24:16 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56311]): Service exited due to SIGABRT

Nov 2 01:24:16 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:24:26 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56313]): Service exited due to SIGABRT

Nov 2 01:24:26 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:24:33 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.mdworker.shared.08000000-0700-0000-0000-000000000000[56267]): Service exited due to SIGKILL | sent by mds[167]

Nov 2 01:24:33 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.mdworker.shared.0B000000-0700-0000-0000-000000000000[56302]): Service exited due to SIGKILL | sent by mds[167]

Nov 2 01:24:33 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.mdworker.shared.04000000-0700-0000-0000-000000000000[56305]): Service exited due to SIGKILL | sent by mds[167]

Nov 2 01:24:33 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.mdworker.shared.09000000-0500-0000-0000-000000000000[56298]): Service exited due to SIGKILL | sent by mds[167]

Nov 2 01:24:33 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.mdworker.shared.18000000-0000-0000-0000-000000000000[56306]): Service exited due to SIGKILL | sent by mds[167]

Nov 2 01:24:33 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.mdworker.shared.0E000000-0000-0000-0000-000000000000[56304]): Service exited due to SIGKILL | sent by mds[167]

Nov 2 01:24:33 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.mdworker.shared.1D000000-0600-0000-0000-000000000000[56299]): Service exited due to SIGKILL | sent by mds[167]

Nov 2 01:24:33 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.mdworker.shared.06000000-0000-0000-0000-000000000000[56300]): Service exited due to SIGKILL | sent by mds[167]

Nov 2 01:24:34 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.mdworker.shared.17000000-0400-0000-0000-000000000000[56303]): Service exited due to SIGKILL | sent by mds[167]

Nov 2 01:24:37 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56315]): Service exited due to SIGABRT

Nov 2 01:24:37 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:24:47 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56317]): Service exited due to SIGABRT

Nov 2 01:24:47 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:24:57 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56322]): Service exited due to SIGABRT

Nov 2 01:24:57 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:25:07 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56327]): Service exited due to SIGABRT

Nov 2 01:25:07 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

iMac 27″, macOS 10.15

Posted on Nov 1, 2020 11:46 PM

Reply
Question marked as Best reply

Posted on Nov 13, 2020 6:13 AM

I had the same problem on big sur after updating. It would crash constantly.


The issue is likely that your simulator config files are corrupted.


I solved it by running this shell script I found in a github repo.


#!/bin/bash

# Kill any running Xcode or CoreSimulator processes

killall Xcode

sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService

# Remove existing simulators, including any installed apps

rm -rf ~/Library/Developer/CoreSimulator/Devices


# Recreate available devices and simulators to correspond to iOS runtime bundled with installed Xcode version and any additionally-installed runtimes

open /Applications/Xcode.app

# List available devices (in /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/CoreSimulator/Profiles

# and /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/Library/CoreSimulator/Profiles),

# simulators (in ~/Library/Developer/CoreSimulator/Devices/)

# and runtimes (in /Library/Developer/CoreSimulator/Profiles/Runtimes/)

xcrun simctl list

Similar questions

3 replies
Question marked as Best reply

Nov 13, 2020 6:13 AM in response to budoman

I had the same problem on big sur after updating. It would crash constantly.


The issue is likely that your simulator config files are corrupted.


I solved it by running this shell script I found in a github repo.


#!/bin/bash

# Kill any running Xcode or CoreSimulator processes

killall Xcode

sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService

# Remove existing simulators, including any installed apps

rm -rf ~/Library/Developer/CoreSimulator/Devices


# Recreate available devices and simulators to correspond to iOS runtime bundled with installed Xcode version and any additionally-installed runtimes

open /Applications/Xcode.app

# List available devices (in /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/CoreSimulator/Profiles

# and /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/Library/CoreSimulator/Profiles),

# simulators (in ~/Library/Developer/CoreSimulator/Devices/)

# and runtimes (in /Library/Developer/CoreSimulator/Profiles/Runtimes/)

xcrun simctl list

Nov 15, 2020 1:47 PM in response to Lucas Holt

Thank you Lucas, this helps me. I entered the commands manualy.


killall Xcode
sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService

Found no matching processes.


And

rm -rf ~/Library/Developer/CoreSimulator/Devices

did not work, got a "Directory not empty" message.


But I changed to this directory and deleted the files again.

After that my CPU fan became quiet again and the ReportCrash process disappeared.


To be on the safe side I started Xcode and had the missing packages installed.

Nov 1, 2020 11:47 PM in response to budoman

This just keeps running over and over...


Nov 2 01:45:09 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56883]): Service exited due to SIGABRT

Nov 2 01:45:09 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:45:19 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56886]): Service exited due to SIGABRT

Nov 2 01:45:19 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:45:29 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56888]): Service exited due to SIGABRT

Nov 2 01:45:29 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:45:39 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56890]): Service exited due to SIGABRT

Nov 2 01:45:39 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:45:50 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56892]): Service exited due to SIGABRT

Nov 2 01:45:50 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:46:00 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56896]): Service exited due to SIGABRT

Nov 2 01:46:00 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:46:10 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56898]): Service exited due to SIGABRT

Nov 2 01:46:10 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:46:20 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56901]): Service exited due to SIGABRT

Nov 2 01:46:20 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:46:30 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56903]): Service exited due to SIGABRT

Nov 2 01:46:30 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:46:40 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56905]): Service exited due to SIGABRT

Nov 2 01:46:40 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:46:51 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56912]): Service exited due to SIGABRT

Nov 2 01:46:51 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:47:01 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56916]): Service exited due to SIGABRT

Nov 2 01:47:01 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:47:11 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56920]): Service exited due to SIGABRT

Nov 2 01:47:11 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

Nov 2 01:47:21 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService[56923]): Service exited due to SIGABRT

Nov 2 01:47:21 Shanesi9iMac2 com.apple.xpc.launchd[1] (com.apple.CoreSimulator.CoreSimulatorService): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.


com.apple.CoreSimulator.CoreSimulatorService - Crash (18 times)

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.