Mac launchd: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 18: Line 18:
I fixed with:
I fixed with:


<pre>
<syntaxhighlight lang='bash'>
launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
</pre>
</syntaxhighlight>


but I don't know what determined it to suddenly start, and why the above command worked.
but I don't know what determined it to suddenly start, and why the above command worked.
==Is a Service Running?==
<syntaxhighlight lang='bash'>
launchctl list | grep com.something.someprocess
</syntaxhighlight>

Revision as of 17:21, 8 October 2024

External

Internal

Overview

brew can configure services to be started by launchd.

Organizatorium

System httpd keeps starting in foreground

I fixed with:

launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist

but I don't know what determined it to suddenly start, and why the above command worked.

Is a Service Running?

launchctl list | grep com.something.someprocess