RAGFlow (CT 700) Doku: Login, Zugang, Architektur

This commit is contained in:
Homelab Cursor 2026-03-24 15:59:39 +01:00
parent 84bba7fc63
commit 6104270713
3 changed files with 61 additions and 0 deletions

View file

@ -14,6 +14,7 @@
| **Redakteur** | redax-wp/STATE.md | WordPress KI-Autor + DeutschlandBlog |
| **Flugpreisscanner** | flugpreisscanner/STATE.md | FRA→PNH, Selenium, 3 Nodes |
| **Infrastruktur** | infrastructure/STATE.md | Alle Server + Container |
| **RAGFlow** | infrastructure/RAGFLOW.md | PDF-RAG (~20k Docs, Muldenstein) |
| **Homelab AI Bot** | — | Hausmeister Telegram Bot (CT 116) |
| **KI-Video Pipeline** | ki-video/PLAN.md | Lokale Videoproduktion: Qwen + FLUX + XTTS + SadTalker (ki-tower) |
| **Webcam Kambodscha** | — | Dahua 4K → cam.arakavanews.com (CT 600 auf pve-ka-3) |

View file

@ -176,6 +176,7 @@ CT_145_MU3="flugscanner-mu|100.75.182.15|Flugpreisscanner Node DE"
CT_504_MU3="projektscan-template|—|Projektscan Template"
CT_600_MU3="wp-mirror|100.92.205.101|WordPress Mirror (Redundanz CT 101)"
CT_601_MU3="rss-mirror|—|RSS Manager Mirror (Redundanz CT 109)"
CT_700_MU3="ragflow|192.168.178.154|RAGFlow PDF-RAG (Docker, Ollama/KI-Server, Synology SMB) — ~13k PDFs"
VM_144_MU3="BT-Bridge|—|BT Bridge VM"
# --- pve-he (Ramsin, bei Helmut) ---

59
infrastructure/RAGFLOW.md Normal file
View file

@ -0,0 +1,59 @@
# RAGFlow — PDF-RAG auf pve-mu-3
> RAG (Retrieval-Augmented Generation) für ~20.000 PDFs aus Synology/Seafile.
## Übersicht
| | |
|---|---|
| **CT** | 700 |
| **Host** | pve-mu-3 (192.168.178.250 / 100.109.101.12) |
| **Hostname** | ragflow |
| **IP (LAN)** | 192.168.178.154 |
## Zugang
| | |
|---|---|
| **Lokal** | http://192.168.178.154:8080 |
| **CF Quick Tunnel** | `journalctl -u cloudflared-ragflow -n 20` → URL (ändert sich bei Neustart) |
| **Beispiel-URL** | https://gbp-folder-explains-counter.trycloudflare.com |
## Login-Daten
| User | E-Mail | Passwort |
|---|---|---|
| **Orbitalo** | wuttili@gmx.de | Astral1966 |
| **Admin** | admin@ragflow.io | admin |
## Architektur
- **Docker Compose** in `/opt/ragflow/docker/`
- **Elasticsearch** (Vector-DB), MySQL, MinIO, Redis
- **Ollama** (KI-Server 100.84.255.83): nomic-embed-text (Embeddings), qwen2.5:14b (Chat)
- **Synology SMB** gemountet: `/mnt/synology/Seafile/Nextcloud-Migration/` (~13k PDFs)
## Wichtige Befehle
```bash
# Von pve-mu-3 aus:
pct exec 700 -- docker ps # Container-Status
pct exec 700 -- systemctl status cloudflared-ragflow # CF Tunnel
pct exec 700 -- journalctl -u cloudflared-ragflow -n 20 # Aktuelle Tunnel-URL
# Im CT 700:
cd /opt/ragflow/docker && docker compose restart # RAGFlow neu starten
```
## Sprache ändern
- **UI**: Einloggen → Profil (oben rechts) → Benutzereinstellungen → Locale → Englisch/Deutsch
- **Browser**: Sprache auf Deutsch/Englisch setzen (RAGFlow nutzt Accept-Language)
## Datasource (PDF-Ordner)
In RAGFlow: Datasource anlegen → **Local Path**`/mnt/synology/Seafile/Nextcloud-Migration/`
---
*Erstellt 2026-03-24*