Documentation

Absolute DB v7.5.2 Docs

40+ documents covering everything from first install to enterprise clustering.

↓ Install Guide SQL Reference API Reference Admin Guide Changelog

📁 Full Documentation Library (40+)

The complete documentation suite covers everything from embedded IoT deployments to planetary-scale clusters. Contact us for the full documentation package.

Request Full Docs → Download & Install

⚡ Quick Reference

Build commands

bash
# Prerequisites (Ubuntu/Debian — blank server)
sudo apt update
sudo apt install -y gcc make build-essential

# Download and build
curl -sSL https://absolutedb.com/install.sh | bash
cd absdb
make release          # single ~154 KB binary, zero deps

# Run
./bin/absdb            # interactive CLI
./bin/absdb-server     # server (PG wire + REST)

Connect and use

bash
# Health check (no extra tools)
curl http://localhost:8080/health

# PostgreSQL client
psql -h localhost -p 5433 -U $(whoami)

# Python
pip install psycopg2-binary
python3 -c "
import psycopg2
conn = psycopg2.connect(
  host='localhost', port=5433,
  user='myapp')  # trust auth — no password needed by default
..."

# Activate PRO/ENT licence
export ADB_LICENSE_KEY=PRO-XXXX-XXXX-XXXX-XXXX
./build/absdb-server