This commit is contained in:
Timothy J. Baek 2024-05-08 09:37:34 -07:00
parent c757dcb1f6
commit 41672c9559
2 changed files with 15 additions and 9 deletions

View File

@ -150,7 +150,7 @@ docker run -d --network=host -v open-webui:/app/backend/data -e OLLAMA_BASE_URL=
For more details on networking in Docker and addressing common connectivity issues, visit our [FAQ page](/faq/). This page provides additional context and solutions for frequently encountered problems, ensuring a smoother operation of Open WebUI in various environments.
## One-line Command to Install Ollama and Open WebUI Together
## Docker Compose
#### Using Docker Compose

View File

@ -1,3 +1,8 @@
---
sidebar_position: 3
title: "🛠️ Troubleshooting"
---
# Troubleshooting
## Understanding the Open WebUI Architecture
@ -201,7 +206,6 @@ C4Context
```
### General Connection Errors
**Ensure Ollama Version is Up-to-Date**: Always start by checking that you have the latest version of Ollama. Visit [Ollama's official site](https://ollama.com/) for the latest updates.
@ -224,6 +228,7 @@ If you've forgotten your admin password, you can reset it by following these ste
To reset the admin password for Open WebUI in a Docker deployment, generate a bcrypt hash of your new password and run a Docker command to update the database. Replace `your-new-password` with the desired password and execute:
1. **Generate bcrypt hash** (local machine):
```bash
htpasswd -bnBC 10 "" your-new-password | tr -d ':\n'
```
@ -238,6 +243,7 @@ To reset the admin password for Open WebUI in a Docker deployment, generate a bc
For local installations of Open WebUI, navigate to the `open-webui` directory and update the password in the `backend/data/webui.db` database.
1. **Generate bcrypt hash** (local machine):
```bash
htpasswd -bnBC 10 "" your-new-password | tr -d ':\n'
```