Mac launchd: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingLaunchdJobs.html =Internal= * Mac...")
 
 
(2 intermediate revisions by the same user not shown)
Line 6: Line 6:


* [[Mac#Subjects|Mac]]
* [[Mac#Subjects|Mac]]
* [[Brew]]


=Overview=
=Overview=
<code>[[Brew|brew]]</code> can configure services to be started by <code>launchd</code>.
=Organizatorium=
==System httpd keeps starting in foreground==
I fixed with:
<pre>
launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
</pre>
but I don't know what determined it to suddenly start, and why the above command worked.

Latest revision as of 21:03, 6 October 2023

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.