API-endpoints
- Dashboard:
http://<SERVER-IP>:6333/dashboard - REST API:
http://<SERVER-IP>:6333 - gRPC API:
<SERVER-IP>:6334
Adgang til dashboard
- Åbn Qdrant-dashboardet:
http://<SERVER-IP>:6333/dashboard - Når du bliver bedt om det, indtast API-nøglen gemt i:
/root/qdrant/config/production.yaml - Qdrant bruger ikke brugerkonti. Godkendelse sker med API-nøgler.
API-nøgler
De genererede API-nøgler er gemt i:
/root/qdrant/config/production.yaml
This file contains:
api_keyread_only_api_key
Hent API-nøglerne:
grep api_key /root/qdrant/config/production.yaml
grep read_only_api_key /root/qdrant/config/production.yaml
Brug den skrivebeskyttede API-nøgle til applikationer, der kun skal udføre søgninger.
Vigtige filer og mapper
- Installationssti:
/root/qdrant - Compose-fil:
/root/qdrant/docker-compose.yml - Konfigurationsfil:
/root/qdrant/config/production.yaml - Datamappe:
/root/qdrant/qdrant_data - Snapshot-mappe:
/root/qdrant/snapshots
Bemærkninger
- Denne installation eksponerer Qdrant over HTTP uden TLS.
- Overvej at aktivere TLS for at kryptere trafikken mellem klienter og din Qdrant-instans af hensyn til sikkerhed og produktionsbrug.
- Gennemgå og opdater konfigurationen i
/root/qdrant/config/production.yamlbased on your requirements and security preferences before using Qdrant in production.