asmbs/mysql-s3-backup

Manages backups of a MySQL database to Amazon S3

v2.0.3 2020-01-22 16:14 UTC

This package is auto-updated.

Last update: 2024-04-21 18:39:24 UTC


README

Manages backups of a MySQL database to Amazon S3

Requirements

  • PHP 7.2+
  • MySQL 4.1.0+
  • Composer 1.6.5+

Installation

  1. Create an empty, non-versioned S3 bucket. The first time that the script runs, it will create 4 folders for you ("yearly", "monthly", "daily", and "hourly").

  2. Copy config.yaml.dist to a new file named config.yaml in the same directory and configure it to your needs, per the Configuration Reference below.

  3. Install the dependencies:

    composer install
    
  4. Set up a single cron job to execute MySQLS3Backup.php once every hour. Using crontab, an example line would be:

    0 * * * * php /path/to/mysql-s3-backup/src/MySQLS3Backup.php app:manage
    

The backup files will be created in the format YYYY-MM-DD_HH-MM-SS.EXT, where EXT is the file extension based on the compression method chosen (sql for "None", gz for "Gzip", and bz2 for "Bzip2"). The file names should not be changed inside the bucket, or else the script will not be able to recognize the files.

Usage

You can manually execute the "manage" command by running:

php src/MySQLS3Backup.php app:manage

To download a previous dump that was uploaded using client-side encryption, it must be downloaded with the "download-encrypted" command. You can do this by running:

php src/MySQLS3Backup.php app:download-encrypted "hourly/2019-06-19_16-07-24.sql.gz" --output-file="/var/tmp/bar.sql.gz"

Configuration Reference

  • s3
    • arguments
      • version The S3 version to use
      • region The S3 region to use
      • credentials
        • key Your S3 key
        • secret Your S3 secret
    • client_encryption
      • enabled If set to true, then dump files will be transferred to S3 using client-side encryption with an AWS KMS-managed customer master key. If set to false, then plain non-encrypted transfer will be used.
        • arguments
          • version
          • region
          • credentials
            • key
            • secret
        • key_arn The ARN of the KMS-managed customer key to use. Typically, this will begin with "arn:aws:kms".
        • cipher_options
          • Should be "cbc" or "gcm". See AWS PHP SDK documentation.
          • Should be "128", "192", or "256". See AWS PHP SDK documentation.
  • sns
    • enabled If set to true, then exceptions will be sent to an Amazon SNS Topic. If set to false, exceptions will simply be outputted.
    • arguments
      • version
      • region
      • credentials
        • key
        • secret
    • topic_arn The ARN of the Amazon SNS Topic to use. Typically, this will begin with "arn:aws:sns".
  • mysql
    • host The host on which your database is hosted
    • dbname The name of your database
    • username The username to be used by MySQL
    • password The password to be used by MySQL
  • app
    • output If set to true, then information will be outputted. If set to false, the script will run silently (except for exceptions).
    • compression The compression algorithm to use. This should be 'None', 'Gzip', or 'Bzip2'. Note that bzip2 support is not enabled by default in PHP.
    • maximum_backup_counts This is the maximum number of backups to keep based on each time period. For example, setting 'yearly' to '7' will keep one backup for each of the past 7 years. When a day rolls over, the most recent 'hourly' backup will be used.
    • yearly
    • monthly
    • daily
    • hourly
    • mirror_default_opt If set to true, then the dump settings will mirror the default --opt setting of MySQL's original mysqldump.
    • add_sql_extension If set to true, then .sql will be added before the compression extension (e.g. .gz) in compressed backups.