> For the complete documentation index, see [llms.txt](https://docs.clore.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.clore.ai/clore.ai/clore.ai-eng-de/fur-hosts/server-offline-on-clore.ai/docker-failure.md).

# Docker-Fehler

**Problem**\
Clore.ai markiert das Rig als *Docker-Fehler* und hält es offline, obwohl HiveOS läuft.

**Symptome**

* Ein „Docker-Fehler“-Symbol wird im Clore-Panel angezeigt.
* Im **Meine Server** Abschnitt werden GPUs als *0x Unbekannt* oder die GPU-Anzahl ändert sich ständig.

***

**Ursache 1: Instabile GPU oder Riser**

Clore kann eine GPU nicht initialisieren, wenn sie getrennt oder instabil ist.\
Selbst wenn HiveOS die GPU sieht, kann Clore sie nicht verwenden → **Docker-Fehler**.

**Lösung: Neustart und Hardware prüfen**

1. Überprüfen Sie die GPU oder den Riser, stellen Sie sicher, dass alles fest angeschlossen ist.
2. Starten Sie das Rig neu:

```
reboot
```

Wenn der Fehler nach dem Neustart zurückkehrt, liegt das Problem wahrscheinlich an der GPU, dem Motherboard oder den Risern.

***

#### Ursache 2: Beschädigte Python-Umgebung (Miniconda)

Clore hängt beim Start, wenn das Verzeichnis `/opt/clore-hosting/miniconda-env` beschädigt ist.

**Lösung: Entfernen Sie die Umgebung und starten Sie neu**

```
sudo systemctl stop clore-hosting.service
sudo rm -rf /opt/clore-hosting/miniconda-env
sudo systemctl start clore-hosting.service
```

***

#### Ursache 3: Installation von Abhängigkeiten hängt

Wenn Clore nicht startet, kann dies an einer eingefrorenen Installation von Abhängigkeiten liegen (z. B. aiofiles, docker usw.).

**Lösung: Abhängigkeiten neu installieren**

```
sudo /opt/clore-hosting/clore.sh --reinstall
```

***

#### Ursache 4: Installierte Docker-Version ist instabil (z. B. 28.\*)

Empfohlene Version: **27.5.1**\
Abstürze sind bei Docker 28+ häufig.

**Lösung: Docker downgraden**

```bash
sudo apt install \
docker-ce=5:27.5.1-1~ubuntu.22.04~jammy \
docker-ce-cli=5:27.5.1-1~ubuntu.22.04~jammy \
containerd.io -y
```

***

#### Ursache 5: Erforderliche Dienste sind beim Systemstart nicht aktiviert

Nach dem Neustart startet das System Docker und Clore Hosting nicht → Server geht offline.

**Lösung: Dienste beim Systemstart aktivieren**

```
sudo systemctl enable clore-hosting.service
sudo systemctl enable docker.service
sudo systemctl enable docker.socket
```

***

#### Ursache 6: Treiber erkennt GPUs nicht (`nvidia-smi → Keine Geräte gefunden`)

Wenn HiveOS die GPU nicht erkennt, kann Clore nicht damit arbeiten → führt zu Docker-Fehlern.

**Lösung: Treiber neu installieren**

```
nvidia-driver-update --force
```

***

#### Wenn das Problem weiterhin besteht — entfernen Sie den Server vollständig aus Clore, ändern Sie das Token und fügen Sie ihn wieder hinzu.

Das hilft oft, wenn interne Konfigurationen beschädigt sind.

***

<mark style="color:blau;">**Docker-Fehler**</mark> <mark style="color:blau;"></mark><mark style="color:blau;">bedeutet fast immer, dass</mark> <mark style="color:blau;"></mark><mark style="color:blau;">**Clore die GPU nicht sieht**</mark><mark style="color:blau;">.</mark>\ <mark style="color:blau;">In</mark> <mark style="color:blau;"></mark><mark style="color:blau;">**90 % der Fälle**</mark><mark style="color:blau;">, ist die Ursache entweder ein deaktivierter Dienst oder eine instabile GPU/Riser.</mark>\ <mark style="color:blau;">Beheben Sie die Ursache, aktivieren Sie die Dienste beim Systemstart — und Ihr Rig bleibt online.</mark>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.clore.ai/clore.ai/clore.ai-eng-de/fur-hosts/server-offline-on-clore.ai/docker-failure.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
