← Back to Troubleshooting
Troubleshooting

Open WebUI Logs In, But Chats Fail

The login screen works fine, but sending a message errors out or hangs. A different problem than "no models show up" - here's the real cause.

6 minute read
Last tested: August 2026 · Ollama 0.33.2 · Open WebUI 0.11.1

This is a different problem than "no models show up"

If the login screen loads, you sign in, and models appear in the dropdown, the connection between Open WebUI and Ollama is already working - that rules out the whole class of problem covered in Ollama Is Running, But Open WebUI Can't Connect. Something is failing later, specifically when a message is actually sent.

Check the logs at the moment it fails

Send a message, let it fail, then immediately check what the container actually logged:

docker logs --tail 50 open-webui

The real error is almost always sitting right there - the difference between "the request timed out," "the model crashed," and "the response was rejected" all point to different fixes below.

The most common real causes

Confirm Ollama is actually working, independent of Open WebUI, to narrow this down fast: run ollama run <model-name> directly in a terminal on the host machine with the same question that's failing in the browser. If it works there, the problem is specifically in the Open WebUI/browser/network path, not Ollama or the model itself.

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