Ollama Launch Agent Disabled Summary | Generated by AI
Here’s a review of what was done:
-
Identified the service —
launchctl list | grep -i ollamafoundcom.ollama.ollamaregistered as a launch agent. -
Located the plist file — Searched standard locations (
~/Library/LaunchAgents,/Library/LaunchAgents,/Library/LaunchDaemons). Found it bundled inside the app at/Applications/Ollama.app/Contents/Library/LaunchAgents/com.ollama.ollama.plist. - Disabled the service — Two commands:
launchctl bootout— attempts to stop the running service (failed with I/O error because it wasn’t actively running, which is harmless)launchctl disable— prevents it from auto-starting on future logins
- Verified —
launchctl print-disabledconfirmedcom.ollama.ollama => disabled.
One thing noted: There’s also a homebrew.mxcl.ollama entry still marked as enabled. If you installed Ollama via Homebrew as well, that could also start it. Let me know if you want that disabled too.