> 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-ru/dlya-khostov/server-offline-on-clore.ai/docker-failure.md).

# Сбой Docker

**Проблема**\
Clore.ai помечает риг как *Сбой Docker* и держит его офлайн, хотя HiveOS работает.

**Симптомы**

* В панели Clore отображается значок «Сбой Docker».
* В **Мои серверы** разделе GPU отображаются как *0x Неизвестно* или количество GPU постоянно меняется.

***

**Причина 1: Нестабильная GPU или райзер**

Clore не может инициализировать GPU, если она отключена или нестабильна.\
Даже если HiveOS видит GPU, Clore не может использовать её → **Сбой Docker**.

**Решение: Перезагрузите и проверьте оборудование**

1. Проверьте GPU или райзер, убедитесь, что всё надёжно подключено.
2. Перезагрузите риг:

```
reboot
```

Если после перезагрузки ошибка возвращается, проблема, вероятно, в GPU, материнской плате или райзерах.

***

#### Причина 2: Повреждённая среда Python (Miniconda)

Clore зависает при запуске, если каталог `/opt/clore-hosting/miniconda-env` повреждён.

**Решение: Удалите среду и перезапустите**

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

***

#### Причина 3: Установка зависимостей зависла

Если Clore не запускается, это может быть связано с зависшей установкой зависимостей (например, aiofiles, docker и т. д.).

**Решение: Переустановите зависимости**

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

***

#### Причина 4: Установлена нестабильная версия Docker (например, 28.\*)

Рекомендуемая версия: **27.5.1**\
Сбои часто встречаются в Docker 28+.

**Решение: Понизьте версию Docker**

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

***

#### Причина 5: Необходимые службы не включены при запуске

После перезагрузки система не запускает Docker и Clore Hosting → сервер уходит офлайн.

**Решение: Включите службы при запуске**

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

***

#### Причина 6: Драйвер не обнаруживает GPU (`nvidia-smi → Устройства не найдены`)

Если HiveOS не обнаруживает GPU, Clore не может с ней работать → приводит к сбою Docker.

**Решение: Переустановите драйвер**

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

***

#### Если проблема сохраняется — полностью удалите сервер из Clore, смените токен и добавьте его заново.

Это часто помогает, если внутренние конфигурации повреждены.

***

<mark style="color:синий;">**Сбой Docker**</mark> <mark style="color:синий;">почти всегда означает, что</mark> <mark style="color:синий;">**Clore не видит GPU**</mark><mark style="color:синий;">.</mark>\ <mark style="color:синий;">В</mark> <mark style="color:синий;">**90% случаев**</mark><mark style="color:синий;">, причина либо в отключённой службе, либо в нестабильной GPU/райзерах.</mark>\ <mark style="color:синий;">Устраните первопричину, включите службы при запуске — и ваш риг останется онлайн.</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-ru/dlya-khostov/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.
