> 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**

* Im Clore-Panel wird ein Symbol „Docker-Fehler“ angezeigt.
* Im **My Servers** Bereich werden GPUs angezeigt 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: Neustarten und Hardware prüfen**

1. Prüfen Sie die GPU oder den Riser und stellen Sie sicher, dass alles sicher verbunden ist.
2. Rig neu starten:

```
reboot
```

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

***

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

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

**Lösung: Die Umgebung entfernen und neu starten**

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

***

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

Wenn Clore nicht startet, kann das 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: Instabile Docker-Version installiert (z. B. 28.\*)

Empfohlene Version: **27.5.1**\
Abstürze sind mit 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 Start nicht aktiviert

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

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

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

***

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

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

**Lösung: Den Treiber neu installieren**

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

***

#### Wenn das Problem weiterhin besteht — den Server vollständig aus Clore entfernen, das Token ändern und erneut hinzufügen.

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

***

<mark style="color:blau;">**Docker-Fehler**</mark> <mark style="color:blau;">bedeutet fast immer, dass</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;">**90 % der Fälle**</mark><mark style="color:blau;">, ist die Ursache entweder ein deaktivierter Dienst oder eine instabile GPU/ein instabiler Riser.</mark>\ <mark style="color:blau;">Beheben Sie das Grundproblem, aktivieren Sie die Dienste beim Start — 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.
