Get Started in 5 Minutes
Follow a focused, copy-paste friendly path to spin up CameoDB locally, connect with the CLI, load data, and run your first search.
Download the binary
curl -sSO https://dl.cameodb.com/mac/cameodb
curl -sSO https://dl.cameodb.com/linux/cameodb
curl -sSO https://dl.cameodb.com/windows/cameodb.exe
Make it executable
chmod +x ./cameodb
mac
linux
One-time change: enable execute permissions for the downloaded binary.
.exe file. win
Run the server
./cameodb
mac
linux
Runs in the foreground. Good for your first run. Creates a data directory at ./data/cameodb.
nohup ./cameodb &
mac
linux
Alternative: Run in the background (daemonized).
.\cameodb.exe
win
Run in PowerShell. Creates a data directory at .\data\cameodb.
Connect with the CLI
Open a new terminal window and start the interactive client:
./cameodb client -i
mac
linux
localhost:9480.
.\cameodb.exe client --interactive
win
Quick health + inventory
fetches cluster health info and pretty-prints the JSON
enumerates indexes with document counts and mapped field names
Load sample data
Downloads and parses TSV, creates schema automatically, and batch-ingests documents. (Takes ~5 seconds).
Run your first query
Swap in any title, keyword, or field filter to explore the dataset!
Next moves
- arrow_right Check the Documentation for configuration & routing rules.
- arrow_right Read the Product Info to see how the engine works.
- arrow_right Grab SDKs from the Downloads page.
Keep building with CameoDB
Explore the docs, benchmark the engine locally, and ship your first production index.