The Problem
If you see this warning when running ollama --version
, smth like:
|
|
Your Ollama client and server are running different versions.
Root Cause
Brew upgraded the Ollama binary but the background service is still running the old server version. The brew services
daemon continues using the cached older version.
Solution (for Mac)
Step 1: Stop All Ollama Processes
|
|
Step 2: Reinstall and Restart
|
|
Why This Works
brew services stop
stops the daemon but doesn’t always kill the processpgrep ollama
finds process IDs for any running Ollama instancesbrew reinstall
ensures the service uses the latest binary- Fresh service start loads the correct version
This approach completely resets Ollama’s state and eliminates version conflicts between client and server.