← Back to Troubleshooting
Troubleshooting

Ollama Service Won't Start

ollama run hangs or fails immediately, and the background service refuses to come up. Where to actually look before reinstalling anything.

5 minute read
Last tested: August 2026 · Ollama 0.33.2

Read the actual error before trying anything

On Linux, the install script sets Ollama up as a systemd service. Check its real status instead of guessing:

sudo systemctl status ollama

For the actual error output, not just the status summary:

journalctl -e -u ollama

On Mac, check the Ollama app's menu bar icon - if it's not there, open the app fresh from Applications and watch for an error dialog. On Windows, check whether the Ollama process appears in Task Manager, and look for an error when launching the app directly.

The most common cause: something else is already using the port

Ollama's API listens on port 11434. If another process already has that port, Ollama fails to start rather than picking a different one. Check what's using it:

# Linux/Mac
sudo lsof -i :11434

On Windows, check the Resource Monitor's network tab, or Task Manager's "Details" view for a process holding that port. If you find an old, stuck Ollama process, end it and try starting the service again.

Other things worth checking

Don't skip the logs and jump straight to reinstalling. A reinstall fixes a genuinely broken install, but it won't fix a port conflict or a permissions issue - you'll just end up back here with the same error after downloading everything again.

Written from hands-on security operations experience. More about this site →