Latest stable release  v1.0.0  ·  Released 27 May 2026

Download Maree-DB

One installer. Every data model. Every platform. Community Edition is free forever — no licence key required.

Linux x86_64

Ubuntu 22.04+, Debian 11+, RHEL 8+, Fedora 37+, Arch, Alpine 3.17+

SHA-256 checksum — maree-db-v1.0.0-linux-x86_64.tar.gz a3f9c2e1d84b5071f6a890cd34e27b195f80a3c241d76e859b0f4a2c9d183e5a
# Install via one-liner
curl -sSL https://dist.mareedb.com/install.sh | bash
 
# Or extract manually
tar -xzf maree-db-v1.0.0-linux-x86_64.tar.gz
sudo mv maree-db /usr/local/bin/
sudo mv maree-db-server /usr/local/bin/
 
# Start the server
maree-db-server --config /etc/mareedb/maree-db.toml
✓ Maree-DB v1.0.0 listening on :5432 :3306 :1433 :6379 :8080

Linux ARM64

Raspberry Pi 4/5, AWS Graviton, Ampere Altra, Oracle Cloud A1, NVIDIA Jetson

SHA-256 checksum — maree-db-v1.0.0-linux-aarch64.tar.gz c7d1a4f893e2b056f1973cde48a09c32670b5d14982e1f370c6a591b8e247d3b
# ARM64 install — same commands
tar -xzf maree-db-v1.0.0-linux-aarch64.tar.gz
sudo mv maree-db /usr/local/bin/
sudo mv maree-db-server /usr/local/bin/
maree-db-server --config /etc/mareedb/maree-db.toml
✓ Maree-DB v1.0.0 ready (ARM64)

macOS — Apple Silicon

M1 / M2 / M3 / M4 — macOS 13 Ventura or later

SHA-256 checksum — maree-db-v1.0.0-macos-arm64.tar.gz e5b2c9a17f0d384e6c81b4930ef5a28d7c3941e8b62f5d0a7e19c4b3f082a61d
# macOS — extract and run
tar -xzf maree-db-v1.0.0-macos-arm64.tar.gz
xattr -d com.apple.quarantine ./maree-db-server # remove Gatekeeper flag
./maree-db-server --config ./maree-db.toml
✓ Maree-DB v1.0.0 ready (Apple Silicon)

macOS — Intel

x86_64 — macOS 12 Monterey or later

SHA-256 checksum — maree-db-v1.0.0-macos-x86_64.tar.gz b8f0e3c72a1d459f7b93052dcf6e17a98d4b02e1a75c3f89d20e4a6b1c957f2e
tar -xzf maree-db-v1.0.0-macos-x86_64.tar.gz
xattr -d com.apple.quarantine ./maree-db-server
./maree-db-server --config ./maree-db.toml
✓ Maree-DB v1.0.0 ready (macOS Intel)

Windows — WSL2

Windows 10 21H2+ / Windows 11 — WSL2 with Ubuntu 22.04 or Debian 12

# Step 1 — Enable WSL2 (run as Administrator in PowerShell)
wsl --install -d Ubuntu-22.04
 
# Step 2 — Inside WSL2 Ubuntu terminal
curl -sSL https://dist.mareedb.com/install.sh | bash
✓ Maree-DB v1.0.0 ready
 
# Connect from Windows using any MySQL/PostgreSQL client
psql -h localhost -p 5432 -U maree

Native Windows binary is on the roadmap. WSL2 provides full Linux performance on Windows today.

Docker

Official Maree-DB container — single command, all wire protocols exposed

Image digest — dist.mareedb.com/docker/mareedb:1.0.0 sha256:4d1a9c2fe83b507e16f9730dcf8a21e47b5d12381c76e859b0f4a2c9d183e5a91
# Option 1 — load from downloaded tarball
docker load -i mareedb-1.0.0.tar
 
# Option 2 — pull from Maree-DB registry
docker pull dist.mareedb.com/docker/mareedb:1.0.0
 
docker run -d \
--name mareedb \
-p 5432:5432 -p 3306:3306 -p 1433:1433 \
-p 6379:6379 -p 8080:8080 \
-v ./data:/var/lib/mareedb \
dist.mareedb.com/docker/mareedb:1.0.0
✓ Container started — all protocols active
 
# docker-compose (production)
docker compose -f docker-compose.yml up -d

IoT & Embedded Edition

Maree-DB IoT runs on devices with as little as 64 KB RAM. The same core engine, compiled for constrained hardware. Supports ARM Cortex-M4+ and RISC-V RV32IMC. Requires Enterprise licence for IoT deployment.

IoT / Embedded Targets

ARM Cortex-M4+, Cortex-A53+, RISC-V RV32IMC, ESP32-S3, STM32H7

✓ Binary: 47 KB stripped — runs on 64 KB RAM devices
✓ Pre-compiled for your target by SupportCALL engineering
✓ Delivered as a validated binary package, not source code

IoT builds are pre-compiled and delivered directly by SupportCALL ICT Solutions for your specific target hardware. Contact us for cross-compilation toolchains and BSP packages.

System Requirements

Maree-DB scales from microcontrollers to hyperscale clusters on the same codebase.

IoT / Embedded

  • 64 KB RAM minimum
  • ARM Cortex-M4+ or RISC-V RV32IMC
  • 256 KB flash storage
  • No OS required (bare-metal)
  • Enterprise licence

Standard (Community / SME)

  • 512 MB RAM
  • x86_64 or ARM64
  • Linux / macOS / WSL2
  • 2 CPU cores recommended
  • 10 GB disk (data separate)

Professional

  • 4 GB RAM
  • 4+ CPU cores
  • NVMe SSD recommended
  • Linux 5.15+ (kernel features)
  • Multi-node: 1 Gbps network

Enterprise / Hyperscale

  • 32 GB+ RAM per node
  • 16+ CPU cores per node
  • NVMe SSD RAID recommended
  • 10 Gbps inter-node network
  • 3+ nodes for BFT clustering

Verify Your Download

Every Maree-DB binary ships with a built-in self-verification routine. Run it immediately after installation to confirm integrity.

Boot-time integrity check

maree-db-server --self-verify
✓ Boot-time health check: PASSED
✓ Cryptographic integrity: VERIFIED
✓ All 5,215 internal assertions: PASSED
Maree-DB v1.0.0 — self-verified sovereign binary

SHA-256 checksums for every release package are published at dist.mareedb.com/checksums. Verify with sha256sum -c maree-db-v1.0.0-SHA256SUMS before first run.

Licence Activation

Community Edition requires no key. Professional and Enterprise licences activate in under 30 seconds — or fully offline.

Node-locked keys — each licence key is bound to the hardware fingerprint of your registered server. Keys cannot be transferred between machines without contacting SupportCALL.
Community and SME Free tiers require no activation.

1

Purchase a licence at mareedb.com/pricing. You will receive a licence key by email within minutes.

2

Run the activation command on your server — requires outbound HTTPS on port 443 to activate.mareedb.com. Completes in 30 seconds.

3

The server validates the key, writes an encrypted licence token to disk, and unlocks the licensed tier. No ongoing connection required.

maree-db-cli licence activate --online --key MAREE-XXXX-XXXX-XXXX-XXXX
✓ Licence activated — Professional tier
✓ Token written to /etc/mareedb/licence.token
✓ No further network connection required
1

Run maree-db-cli licence activate --offline to generate your hardware ID. No internet needed at this step.

2

Email licensing@mareedb.com or call SupportCALL ICT Solutions with your order number and hardware ID. We respond within 4 business hours.

3

We return a licence key by email. Apply it with maree-db-cli licence activate --key MAREE-<key>.

maree-db-cli licence activate --offline
Hardware ID: HW-A3F9-C2E1-D84B-5071
# Email hardware ID to licensing@mareedb.com
 
maree-db-cli licence activate --key MAREE-<key-from-email>
✓ Licence activated — offline key applied
1

On your air-gapped machine, export your hardware fingerprint to a USB drive — the server never touches a network.

2

Transfer the fingerprint to a connected machine via USB. Email it to licensing@mareedb.com with your order number and "air-gapped deployment" in the subject.

3

We return a signed offline token. Transfer it back via USB and apply it. Zero network contact with the air-gapped machine at any stage.

4

SCIF and classified deployments: contact us for a physical USB delivery option with signed chain-of-custody documentation.

# On air-gapped machine (no internet required)
maree-db-cli hardware-id > /media/usb/hw.txt
# Transfer USB to connected machine, email hw.txt to licensing@mareedb.com
# Receive licence.token, transfer back via USB
maree-db-cli licence activate --file /media/usb/licence.token
✓ Air-gapped licence activated — zero network contact

Air-gapped activation is included in all Enterprise licences at no extra cost. SCIF-level deployments are available — contact security@mareedb.com.

Verify Download Integrity

Every release is signed. Verify before you run.

# Download the Ed25519 signing key (do this once)
curl -sSL https://dist.mareedb.com/release-key.pub -o mareedb-release.pub
 
# Verify the tarball against its signature
curl -sSL https://dist.mareedb.com/maree-db-v1.0.0-linux-x86_64.tar.gz.sig -o sig.bin
openssl pkeyutl -verify -pubin -inkey mareedb-release.pub \
-sigfile sig.bin -in maree-db-v1.0.0-linux-x86_64.tar.gz
Signature Verified Successfully
 
# Cross-check SHA-256
sha256sum -c maree-db-v1.0.0-SHA256SUMS
maree-db-v1.0.0-linux-x86_64.tar.gz: OK

Maree-DB binaries are built entirely from source in an isolated build environment. The release key fingerprint is published at mareedb.com/security. Report signing anomalies to security@mareedb.com.