API-Endpunkte
- Dashboard:
http://<SERVER-IP>:6333/dashboard - REST-API:
http://<SERVER-IP>:6333 - gRPC-API:
<SERVER-IP>:6334
Dashboard-Zugriff
- Öffnen Sie das Qdrant-Dashboard:
http://<SERVER-IP>:6333/dashboard - Geben Sie auf Aufforderung den API-Schlüssel ein, der gespeichert ist in:
/root/qdrant/config/production.yaml - Qdrant verwendet keine Benutzerkonten. Die Authentifizierung erfolgt über API-Schlüssel.
API-Schlüssel
Die generierten API-Schlüssel sind gespeichert in:
/root/qdrant/config/production.yaml
This file contains:
api_keyread_only_api_key
API-Schlüssel abrufen:
grep api_key /root/qdrant/config/production.yaml
grep read_only_api_key /root/qdrant/config/production.yaml
Verwenden Sie den schreibgeschützten API-Schlüssel für Anwendungen, die nur Suchvorgänge ausführen müssen.
Wichtige Dateien und Verzeichnisse
- Installationspfad:
/root/qdrant - Compose-Datei:
/root/qdrant/docker-compose.yml - Konfigurationsdatei:
/root/qdrant/config/production.yaml - Datenverzeichnis:
/root/qdrant/qdrant_data - Snapshot-Verzeichnis:
/root/qdrant/snapshots
Hinweise
- Diese Installation stellt Qdrant über HTTP ohne TLS bereit.
- Erwägen Sie, TLS zu aktivieren, um den Datenverkehr zwischen Clients und Ihrer Qdrant-Instanz zu verschlüsseln, für mehr Sicherheit und den Produktivbetrieb.
- Prüfen und aktualisieren Sie die Konfiguration in
/root/qdrant/config/production.yamlbased on your requirements and security preferences before using Qdrant in production.