2025-01-03 16:14:30 +00:00
# MB Backup Manager Documentation
## Overview
2025-01-07 17:18:36 +00:00
The **MB Backup Manager** is a comprehensive backup solution designed for managing automated backups of web applications, particularly those running on the Virtuozzo Application Platform. This tool leverages Restic for efficient backup storage and management, with support for automated scheduling through cron jobs.
2025-01-03 16:14:30 +00:00
## Features
2025-01-07 17:18:36 +00:00
- **Automated Backups**: Schedule and manage backups using `manage_backup_schedule.sh`
- **Backup Types**:
- Core files backup (`backup_core_files.sh`)
- Media files backup (`backup_media.sh`)
- Database backup (`backup_database.sh`)
- **Backup Management**:
- View snapshots with tag filtering (`view_snapshots.sh`)
- Direct backup restoration (`restore_backup_direct.sh`)
- Repository statistics and maintenance (`check_repo_stats.sh`)
- Repository validation (`check_backup_repo.sh`)
- **Logging**: Comprehensive logging system with separate directories for automated and manual backups
- **Backup Orchestration**: Centralized backup management through `backup_all.sh`
2025-01-03 16:14:30 +00:00
## Installation
1. **Clone the Repository** :
2025-01-07 17:18:36 +00:00
Clone the repository containing the backup manager scripts to your local machine or server.
2025-01-03 16:14:30 +00:00
[MB Backup Manager Repository ](https://deploy.mightybox.io/addons/mb-backup-manager )
2. **Install Dependencies** :
2025-01-07 17:18:36 +00:00
Ensure that `Restic` and `cron` are installed on your system:
2025-01-03 16:14:30 +00:00
```bash
sudo dnf install -y cronie
sudo dnf install -y restic
```
3. **Set Up Directory Structure** :
2025-01-07 17:18:36 +00:00
Create the necessary directories for logs:
2025-01-03 16:14:30 +00:00
```bash
mkdir -p /home/litespeed/mb-backups/logs/auto
mkdir -p /home/litespeed/mb-backups/logs/manual
```
4. **Configure Environment** :
2025-01-07 17:18:36 +00:00
Ensure the Restic password is stored in `/etc/restic-password` .
## Core Scripts and Usage
### Backup Management
1. **Viewing Snapshots** (`view_snapshots.sh`):
- View all snapshots or filter by specific tags
- Displays snapshot IDs, timestamps, and associated tags
- Supports an `all` tag to show all snapshots regardless of tags
2. **Direct Backup Restoration** (`restore_backup_direct.sh`):
- Restores specific backup types based on tags
- Handles direct database restoration by piping SQL files from Restic to MySQL
- Automatically detects database credentials from `wp-config.php`
3. **Backup Scheduling** (`manage_backup_schedule.sh`):
- Add or update backup schedules with cron
- Remove existing backup schedules
- Validates cron syntax and dependencies
- Logs all scheduling actions
4. **Repository Maintenance** (`check_repo_stats.sh`):
2025-02-07 13:38:11 +00:00
- Retrieves detailed repository statistics.
- Applies retention policies to manage snapshot storage:
- **Default Retention**: Keeps only the last 7 snapshots to balance storage usage and recovery needs.
- Forgotten snapshots are pruned to reclaim storage space.
- Performs repository integrity checks to ensure data consistency and reliability.
- Automatically detects and removes stale locks to prevent repository conflicts.
- Logs all actions and results to `repo_stats_YYYY-MM-DD.log` for traceability.
2025-01-07 17:18:36 +00:00
5. **Repository Validation** (`check_backup_repo.sh`):
- Validates repository integrity
- Initializes empty repositories
- Handles stale locks
- Logs to `/home/litespeed/logs/backup_repo_check.log`
### Backup Components
1. **Complete Backup** (`backup_all.sh`):
- Orchestrates the entire backup process
- Calls individual backup scripts for core, media, and database
- Applies consistent tagging (`manual-backup` or `auto-backup` with timestamps)
- Handles error logging and reporting
2. **Individual Backup Scripts** :
- `backup_core_files.sh` : Backs up essential application files
- `backup_media.sh` : Handles media file backups
- `backup_database.sh` : Manages database backups
- Each script can run independently or as part of `backup_all.sh`
### Schedule Monitoring
**Check Scheduled Backups** (`check_sched.sh`):
```bash
./check_sched.sh
```
Displays current backup-related cron jobs and automation status.
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
## Available Commands
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
### Backup Management Commands
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
1. **Schedule Management** (`manage_backup_schedule.sh`):
```bash
# Add or update a backup schedule
./manage_backup_schedule.sh add "0 0 * * *" "your_restic_password"
# Remove all backup schedules
./manage_backup_schedule.sh remove
# List current backup schedules
./manage_backup_schedule.sh list
```
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
2. **Manual Backup Operations** (`backup_all.sh`):
```bash
# Run a manual backup
./backup_all.sh manual
# Run an automated backup (used by cron)
./backup_all.sh auto
```
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
3. **Individual Backup Components** :
```bash
# Core files backup
./backup_core_files.sh "restic_password" "backup_tag"
# Database backup
./backup_database.sh "restic_password" "backup_tag"
# Media files backup
./backup_media.sh "restic_password" "backup_tag"
```
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
4. **Repository Management** :
```bash
# Check repository status
./check_repo_stats.sh
# Validate repository
./check_backup_repo.sh
# View snapshots (all or by tag)
./view_snapshots.sh
```
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
5. **Schedule Monitoring** :
```bash
# Check current backup schedules
./check_sched.sh
```
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
6. **Backup Restoration** :
```bash
# Restore backups directly
./restore_backup_direct.sh
```
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
### Environment Variables
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
The following environment variables are used by the scripts:
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
- `RESTIC_PASSWORD` : Stored in `/etc/restic-password`
- `RESTIC_REPOSITORY` : Default path `/mnt/backup`
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
### Log File Locations
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
- Automated backup logs: `/home/litespeed/mb-backups/logs/auto/`
- Manual backup logs: `/home/litespeed/mb-backups/logs/manual/`
- Repository stats: `repo_stats_YYYY-MM-DD.log`
- Repository check logs: `/home/litespeed/logs/backup_repo_check.log`
- Schedule actions log: `/home/litespeed/mb-backups/logs/auto/schedule_actions.log`
- Backup addon log: `/var/log/backup_addon.log`
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
## Troubleshooting
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
1. **Cron Service Issues** :
```bash
sudo systemctl status crond
sudo systemctl start crond
sudo systemctl enable crond
```
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
2. **Log Locations** :
- Automated backup logs: `/home/litespeed/mb-backups/logs/auto/`
- Manual backup logs: `/home/litespeed/mb-backups/logs/manual/`
- Repository stats: `repo_stats_YYYY-MM-DD.log`
- Repository check logs: `/home/litespeed/logs/backup_repo_check.log`
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
3. **Common Issues** :
- Stale locks: Automatically handled by scripts
- Repository access: Verify Restic password in `/etc/restic-password`
- Backup failures: Check corresponding log files for error messages
- Cron job issues: Verify cron service status and job configuration
2025-01-03 16:14:30 +00:00
2025-01-07 17:18:36 +00:00
4. **Permissions** :
```bash
chmod +x /home/litespeed/mb-backups/scripts/imports/*.sh
```
2025-01-03 16:14:30 +00:00
## Repository Information
2025-01-07 17:18:36 +00:00
For the latest updates and commit history:
2025-01-03 16:14:30 +00:00
[MB Backup Manager Repository ](https://deploy.mightybox.io/addons/mb-backup-manager )