API Endpoints
- Dashboard:
http://<SERVER-IP>:6333/dashboard - REST API:
http://<SERVER-IP>:6333 - gRPC API:
<SERVER-IP>:6334
Dashboard Access
- Open the Qdrant Dashboard:
http://<SERVER-IP>:6333/dashboard - When prompted, enter the API key stored in:
/root/qdrant/config/production.yaml - Qdrant does not use user accounts. Authentication is performed using API keys.
API Keys
The generated API keys are stored in:
/root/qdrant/config/production.yaml
This file contains:
api_keyread_only_api_key
Retrieve the API keys:
grep api_key /root/qdrant/config/production.yaml
grep read_only_api_key /root/qdrant/config/production.yaml
Use the read-only API key for applications that only need to perform search operations.
Important Files & Directories
- Install Path:
/root/qdrant - Compose File:
/root/qdrant/docker-compose.yml - Configuration File:
/root/qdrant/config/production.yaml - Data Directory:
/root/qdrant/qdrant_data - Snapshots Directory:
/root/qdrant/snapshots
Notes
- This installation exposes Qdrant over HTTP without TLS.
- Consider enabling TLS to encrypt traffic between clients and your Qdrant instance for improved security and production use.
- Review and update the configuration in
/root/qdrant/config/production.yamlbased on your requirements and security preferences before using Qdrant in production.