A lightweight, zero-trust CLI tool built in Python to automate, encrypt, and stream database backups directly to multi-cloud storage.
Project description
๐ LunarDump
Secure, Automated, and Zero-Trust Database Backup Engine
LunarDump is a modern, developer-friendly Command-Line Interface (CLI) tool designed to streamline and secure your database backup workflows. Built with Python, it automates the entire lifecycle of database disaster recoveryโfrom streaming dumps without memory overhead, applying military-grade AES-256-GCM encryption, to syncing backups directly across cloud providers.
โจ Key Features
- ๐๏ธ Multi-Engine Support: Seamlessly handles PostgreSQL, MySQL, MariaDB, and MongoDB out-of-the-box.
- ๐ Zero-Trust Encryption: End-to-end authenticated AES-256-GCM encryption applied locally before any data leaves your server.
- โก Memory-Efficient Streaming: Streams database dumps directly through encryption into cloud storage, preventing RAM spikes even on multi-gigabyte databases.
- โ๏ธ Multi-Cloud Syncing: Direct integration with AWS S3, Google Cloud Storage (GCS), Cloudflare R2, and MinIO.
- ๐งน Automated Retention Cleaner: Automatically purges outdated backup archives according to your custom retention window.
- ๐ Instant Telemetry: Rich terminal UI with progress bars, health-check tables, and webhook alerts to Telegram & Slack.
๐ฆ Installation & Requirements
1. Install LunarDump via PyPI
# Standard installation
pip install lunardump
# Optional: Install with Google Cloud Storage support
pip install "lunardump[gcs]"
2. System Binary Prerequisites
LunarDump leverages native client dump tools for streaming efficiency. Ensure the CLI client for your database engine is installed on your system:
๐ macOS (Homebrew)
# For MySQL / MariaDB
brew install mysql-client
export PATH="/opt/homebrew/opt/mysql-client/bin:$PATH"
# For PostgreSQL
brew install libpq
# For MongoDB
brew install mongodb-database-tools
๐ง Ubuntu / Debian
# For MySQL
sudo apt update && sudo apt install -y mysql-client
# For PostgreSQL
sudo apt install -y postgresql-client
# For MongoDB
sudo apt install -y mongodb-org-tools
๐ Step-by-Step Tutorial & Usage Guide
Step 1: Generate Encryption Key
Generate a cryptographically secure 256-bit (64-character hex) key:
# Print key to terminal stdout
lunardump keygen
# Or save key directly to a secure secret file (with 0600 permissions)
lunardump keygen --output secret.key
Step 2: Create Configuration (config.yaml)
Create your config.yaml file to define backup jobs and target destinations:
version: "1.0"
backup:
name: "production-mysql-daily"
database:
type: "mysql" # postgres | mysql | mongo
host: "127.0.0.1"
port: 3306
name: "username"
user: "db_user"
password_env: "DB_PASSWORD" # Environment variable holding database password
security:
encrypt: true
algorithm: "aes-256-gcm"
key_env: "LUNARDUMP_ENCRYPTION_KEY" # Env var holding secret key
storage:
provider: "s3" # s3 | gcs | local
bucket: "company-db-backups"
region: "ap-southeast-1"
path: "daily/mysql/"
retention_days: 30
endpoint_url: "" # Optional for S3-compatible (MinIO / Cloudflare R2)
notifications:
on_success: true
on_failure: true
channels:
- type: "telegram"
bot_token_env: "TELEGRAM_BOT_TOKEN"
chat_id: "-82764827364"
Step 3: Setup Environment Variables (.env)
Keep secret credentials out of your configuration files using a .env file or environment variables:
# Create .env file
cat <<EOF > .env
DB_PASSWORD="your_database_password_here"
LUNARDUMP_ENCRYPTION_KEY="a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8"
TELEGRAM_BOT_TOKEN="872642874:HkajbsdakJkajSAs2kdad-hadkjaKJHS"
# Cloud Storage Credentials (AWS S3)
AWS_ACCESS_KEY_ID="AKIAXXXXXXXXXXXXXXXX"
AWS_SECRET_ACCESS_KEY="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
# Or for Google Cloud Storage (GCS)
GOOGLE_APPLICATION_CREDENTIALS="/path/to/service-account.json"
EOF
# Load environment variables in your current shell
source .env
Step 4: Verify System Connectivity (Health Check)
Before running your backup job, test connectivity to your database, CLI tools, encryption keys, and cloud storage:
lunardump config check --config config.yaml
Output preview:
LunarDump System Health Check
โโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Component โ Details โ Status โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ Config File โ config.yaml โ VALID (Pydantic v2) โ
โ DB Engine (mysql) โ Tool binary check โ INSTALLED โ
โ DB Connection โ 127.0.0.1:3306/db_user โ CONNECTED โ
โ Encryption (AES-256-GCM) โ Env: LUNARDUMP_ENCRYPTION_KEY โ KEY READY โ
โ Storage Target โ s3://company-db-backups โ REACHABLE โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Step 5: Execute Backup Pipeline
Run the automated backup pipeline:
# Dry-run mode: validates configuration without creating files
lunardump run --config config.yaml --dry-run
# Run full backup (Dump -> Encrypt -> Upload -> Retention Cleanup -> Webhook Alert)
lunardump run --config config.yaml
๐ Decryption & Disaster Recovery
Decrypt and Restore Encrypted Backup (.enc)
Decrypt an AES-256-GCM encrypted backup file back to plain database SQL/dump format:
# Decrypt using key file
lunardump restore --file backup_20260729.enc --key secret.key --output backup_decrypted.sql
# Decrypt using raw key string
lunardump restore --file backup_20260729.enc --key f77693f31ebef68d774913969a3f6a57ee... --output backup_decrypted.sql
Direct Database Dump Command
Perform an instant database dump directly to a local file or stdout without requiring a configuration file:
# Dump MySQL directly to file
lunardump db dump --type mysql --host localhost --user root --name db_name --output dump.sql
# Dump PostgreSQL directly to stdout
lunardump db dump --type postgres --host localhost --user postgres --name main_db > dump.sql
โฐ Automating with Cron Jobs
Automate daily database backups by setting up a cron job on your server:
# Open crontab editor
crontab -e
# Add daily backup entry at 02:00 AM
0 2 * * * cd /opt/lunardump && source .env && lunardump run --config config.yaml >> /var/log/lunardump.log 2>&1
๐ค Contributing
Contributions, issues, and feature requests are welcome! Whether it's reporting a bug, adding support for new database engines or storage providers, or improving documentation, your help is greatly appreciated.
For full development setup, testing standards, and pull request guidelines, please read our CONTRIBUTING.md.
Quick Start for Contributors:
- Fork the Repository on GitHub.
- Clone your fork locally:
git clone https://github.com/indhifarhandika/LunarDump.git cd LunarDump
- Set up virtual environment & development dependencies:
python3 -m venv .venv source .venv/bin/activate pip install -e ".[dev,gcs]"
- Create a feature branch:
git checkout -b feature/amazing-feature
- Run test suite & ensure code coverage passes:
pytest --cov=lunardump --cov-report=term-missing
- Commit & Push your changes, then submit a Pull Request!
๐ Security
For security policies, vulnerability reporting, and cryptographic safety guidelines, please read our SECURITY.md.
โ Support the Project
If you find LunarDump useful for your projects or infrastructure, please consider supporting its development:
๐ License
Distributed under the MIT License. See LICENSE for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lunardump-0.1.2.tar.gz.
File metadata
- Download URL: lunardump-0.1.2.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40fdd5c378e2ce3060ebd232607cf7343bfa3a1429b725be1d24c9e50959d4dd
|
|
| MD5 |
1437cd8593f940fae7cc2ccae56d8079
|
|
| BLAKE2b-256 |
8f3dfbba12d5cd325a41bd7c17027c917b5d655fe9b92307d603fb98de15c4c1
|
File details
Details for the file lunardump-0.1.2-py3-none-any.whl.
File metadata
- Download URL: lunardump-0.1.2-py3-none-any.whl
- Upload date:
- Size: 29.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b2913bc6bc6f198032d9990523df58956c8a7ee286a92feece2ef9482e4b096
|
|
| MD5 |
6cf314b5df46065bce9e5c4d60fd17da
|
|
| BLAKE2b-256 |
ea0f884ea78edcd1cd9a94b158f30649bb72a155e1ab1e9698a267f263a3ce43
|