> 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-mieter/how-to-connect.md).

# Wie verbinden

Nachdem Sie einen GPU-Server auf Clore.ai gemietet haben, können Sie sich per SSH verbinden oder vorinstallierte Dienste wie Jupyter Notebook nutzen.

## Verbindungsinformationen

Sobald Ihre Bestellung aktiv ist, finden Sie die Verbindungsdetails in:

1. **Meine Bestellungen** Seite → Klicken Sie auf Ihre aktive Bestellung
2. **Bestelldetails** zeigt: IP-Adresse, SSH-Port und Zugangsdaten

## SSH-Verbindung

### Linux / macOS

Öffnen Sie das Terminal und führen Sie aus:

```bash
ssh root@<IP_ADDRESS> -p <PORT>
```

Beispiel:

```bash
ssh root@185.123.45.67 -p 22022
```

### Windows

**Mit PowerShell:**

```powershell
ssh root@<IP_ADDRESS> -p <PORT>
```

**Mit PuTTY:**

1. Herunterladen [PuTTY](https://putty.org)
2. Geben Sie die IP-Adresse in „Host Name“ ein
3. Geben Sie die Portnummer in „Port“ ein
4. Klicken Sie auf „Open“
5. Anmelden als `root` mit dem bereitgestellten Passwort

## SSH-Schlüssel (empfohlen)

Für die passwortlose Anmeldung fügen Sie Ihren öffentlichen SSH-Schlüssel hinzu:

1. Gehen Sie zu **Konto** → **SSH-Schlüssel**
2. Klicken Sie auf **Schlüssel hinzufügen**
3. Fügen Sie Ihren öffentlichen Schlüssel ein (normalerweise `~/.ssh/id_rsa.pub`)
4. Speichern

Ihr Schlüssel wird automatisch auf neue Anmietungen bereitgestellt.

### SSH-Schlüssel generieren (falls Sie noch keinen haben)

```bash
ssh-keygen -t rsa -b 4096
```

## Zugriff auf Jupyter Notebook

Viele Images haben Jupyter vorinstalliert:

1. Überprüfen Sie Ihre Bestelldetails auf die Jupyter-URL
2. Öffnen Sie die URL in Ihrem Browser (normalerweise `http://<IP>:<JUPYTER_PORT>`)
3. Geben Sie das in Ihren Bestelldetails angezeigte Token ein

## Dateiübertragung

### Mit SCP

Datei auf den Server hochladen:

```bash
scp -P <PORT> /local/file.txt root@<IP>:/remote/path/
```

Datei vom Server herunterladen:

```bash
scp -P <PORT> root@<IP>:/remote/file.txt /local/path/
```

### Mit rsync

Für größere Übertragungen oder das Synchronisieren von Verzeichnissen:

```bash
rsync -avz -e "ssh -p <PORT>" /local/folder/ root@<IP>:/remote/folder/
```

## Portweiterleitung

Um lokal auf Dienste zuzugreifen, die auf dem Server laufen:

```bash
ssh -L 8080:localhost:8080 root@<IP> -p <PORT>
```

Dadurch wird der Server-Port 8080 auf Ihren lokalen Port 8080 weitergeleitet.

## Häufige Probleme

| Problem                       | Lösung                                                                                                     |
| ----------------------------- | ---------------------------------------------------------------------------------------------------------- |
| Verbindung abgelehnt          | Prüfen Sie, ob der Server vollständig gestartet ist (warten Sie 2–3 Minuten nach dem Start der Bestellung) |
| Zugriff verweigert            | Überprüfen Sie, ob Passwort/SSH-Schlüssel korrekt ist                                                      |
| Verbindungszeitüberschreitung | Prüfen Sie, ob der Port korrekt ist                                                                        |
| Host-Schlüssel geändert       | Alten Schlüssel entfernen: `ssh-keygen -R [<IP>]:<PORT>`                                                   |

## Nützliche Befehle nach der Verbindung

GPU-Status prüfen:

```bash
nvidia-smi
```

Verfügbaren Speicherplatz prüfen:

```bash
df -h
```

Systemressourcen prüfen:

```bash
htop
```


---

# 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-mieter/how-to-connect.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.
