Prerequisites
- Docker installed and running
- 8 GB RAM (16 GB+ recommended)
- 10 GB disk space (100 GB+ recommended)
Run VectorAI DB
localhost:6574. The Local UI is available at localhost:6575.
Want to go further? Start a free 30-day trial and scale to 1 million vectors, fully on your infrastructure. No credit card required.
Using Docker Compose
Create adocker-compose.yml file:
Verify installation
Python SDK required: Run
pip install actian-vectorai-client first, or see the Python SDK installation guide.Troubleshooting
| Issue | Solution |
|---|---|
| Connection failed | Ensure the container is running: docker ps |
| Port already in use | Stop services using port 6574 or remap: -p 6576:6574 |
| Permission denied | Run Docker with appropriate permissions or add your user to the docker group |
| Container exits immediately | Check logs: docker logs <container-id> |
| Container exits (Linux / WSL2) | Volume mount permission mismatch: the container runs as UID 999. Run chown -R 999:999 ./local_data on the host, then restart. |
View Docker logs
Next steps
Quickstart
Create your first collection, insert vectors, and run a search.
Core concepts
Understand the data model, architecture, and how search works.
Python SDK
Install and configure the Python SDK.