Back to Skills

automating-database-backups

jeremylongshore
Updated Today
22 views
712
74
712
View on GitHub
Metaautomationdata

About

This skill generates automated backup scripts for PostgreSQL, MySQL, MongoDB, and SQLite with scheduling and encryption. It's triggered by requests to automate backups, schedule dumps, or implement disaster recovery. The scripts include compression and leverage tools like cron, pg_dump, and gpg for secure, scheduled operations.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/jeremylongshore/claude-code-plugins-plus
Git CloneAlternative
git clone https://github.com/jeremylongshore/claude-code-plugins-plus.git ~/.claude/skills/automating-database-backups

Copy and paste this command in Claude Code to install this skill

Documentation

Prerequisites

Before using this skill, ensure:

  • Database credentials with backup permissions (SELECT on all tables)
  • Sufficient disk space for backup files (estimate 2-3x database size with compression)
  • Cron or task scheduler access for automated scheduling
  • Backup destination storage (local disk, NFS, S3, GCS, Azure Blob)
  • Encryption tools installed (gpg, openssl) for secure backups
  • Test database available for restore validation

Instructions

Step 1: Assess Backup Requirements

  1. Identify database type (PostgreSQL, MySQL, MongoDB, SQLite)
  2. Determine backup frequency (hourly, daily, weekly, monthly)
  3. Define retention policy (how long to keep backups)
  4. Calculate expected backup size and storage needs
  5. Document RTO (Recovery Time Objective) and RPO (Recovery Point Objective)

Step 2: Design Backup Strategy

  1. Choose backup type: full, incremental, or differential
  2. Select backup destination (local, network storage, cloud)
  3. Plan backup scheduling to avoid peak usage times
  4. Define backup naming convention with timestamps
  5. Determine compression and encryption requirements

Step 3: Generate Backup Scripts

  1. Create database-specific backup command (pg_dump, mysqldump, mongodump)
  2. Add compression using gzip or zstd for storage efficiency
  3. Implement encryption using gpg or openssl for security
  4. Add error handling and logging to backup script
  5. Include backup verification (checksum, test restore)

Step 4: Configure Backup Schedule

  1. Create cron job entry for automated execution
  2. Set appropriate schedule based on backup frequency
  3. Configure environment variables for credentials
  4. Set up log rotation for backup logs
  5. Test manual execution before enabling automation

Step 5: Implement Retention Policy

  1. Create cleanup script to remove old backups
  2. Implement tiered retention (daily 7 days, weekly 4 weeks, monthly 12 months)
  3. Schedule retention cleanup after backup completion
  4. Add safeguards to prevent accidental deletion of recent backups
  5. Log all backup deletions for audit trail

Step 6: Create Restore Procedures

  1. Document step-by-step restore process
  2. Create restore scripts for each database type
  3. Include procedures for point-in-time recovery
  4. Test restore process on non-production environment
  5. Document restore time estimates and validation steps

Output

This skill produces:

Backup Scripts: Shell scripts for database dumps with compression and encryption

Cron Configurations: Crontab entries for automated backup scheduling

Retention Scripts: Automated cleanup scripts implementing retention policies

Restore Procedures: Step-by-step documentation and scripts for database restoration

Monitoring Configuration: Log file locations and success/failure notification setup

Error Handling

Backup Failures:

  • Check database connectivity and credentials
  • Verify sufficient disk space for backup files
  • Review database logs for lock or permission issues
  • Implement retry logic with exponential backoff
  • Send alerts on backup failures

Insufficient Disk Space:

  • Monitor disk usage before backup execution
  • Implement pre-backup cleanup of old backups
  • Use incremental backups to reduce space requirements
  • Compress backups more aggressively
  • Move backups to remote storage immediately after creation

Encryption Errors:

  • Verify encryption tools (gpg, openssl) are installed
  • Check encryption key availability and permissions
  • Test encryption/decryption process manually
  • Document key management procedures
  • Store encryption keys securely separate from backups

Schedule Conflicts:

  • Ensure only one backup runs at a time (use lock files)
  • Adjust backup schedule to avoid peak database usage
  • Implement backup queuing for multiple databases
  • Monitor backup duration and adjust schedule if needed
  • Alert if backup duration exceeds acceptable window

Resources

Backup Script Templates:

  • PostgreSQL: {baseDir}/templates/backup-scripts/postgresql-backup.sh
  • MySQL: {baseDir}/templates/backup-scripts/mysql-backup.sh
  • MongoDB: {baseDir}/templates/backup-scripts/mongodb-backup.sh
  • SQLite: {baseDir}/templates/backup-scripts/sqlite-backup.sh

Restore Procedures: {baseDir}/docs/restore-procedures/

  • Point-in-time recovery
  • Full database restore
  • Selective table restore
  • Cross-server migration

Retention Policy Templates: {baseDir}/templates/retention-policies.yaml Cron Job Examples: {baseDir}/examples/crontab-entries.txt Monitoring Scripts: {baseDir}/scripts/backup-monitoring.sh

GitHub Repository

jeremylongshore/claude-code-plugins-plus
Path: plugins/database/database-backup-automator/skills/database-backup-automator
aiautomationclaude-codedevopsmarketplacemcp

Related Skills

sglang

Meta

SGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.

View skill

Algorithmic Art Generation

Meta

This skill helps developers create algorithmic art using p5.js, focusing on generative art, computational aesthetics, and interactive visualizations. It automatically activates for topics like "generative art" or "p5.js visualization" and guides you through creating unique algorithms with features like seeded randomness, flow fields, and particle systems. Use it when you need to build reproducible, code-driven artistic patterns.

View skill

csv-data-summarizer

Meta

This skill automatically analyzes CSV files to generate comprehensive statistical summaries and visualizations using Python's pandas and matplotlib/seaborn. It should be triggered whenever a user uploads or references CSV data without prompting for analysis preferences. The tool provides immediate insights into data structure, quality, and patterns through automated analysis and visualization.

View skill

llamaindex

Meta

LlamaIndex is a data framework for building RAG-powered LLM applications, specializing in document ingestion, indexing, and querying. It provides key features like vector indices, query engines, and agents, and supports over 300 data connectors. Use it for document Q&A, chatbots, and knowledge retrieval when building data-centric applications.

View skill