Giter VIP home page Giter VIP logo

shell-mysql-dump-s3's Introduction

mysql-dump-s3.sh

Installation

Installing the script:

sudo make install

will copy it to /usr/local/bin/mysql-dump-s3.sh, where it should be available through most user's path.

Example usage

To avoid giving MySQL credentials to the script, you can setup your ~/.my.cnf file:

[mysql]
user = db_user
password = db_password

[mysqldump]
user = db_user
password = db_password

You will also need to setup the AWS command credentials by running:

aws configure

Having done that, a basic use of the script is:

mysql-dump-s3.sh --database db_name --s3-bucket bucket_name --s3-folder /backups/

Alternatively, MySQL credentials can be passed to the script. Basically, the argument passed to the --dump-extra-args option will be passed to mysqldump as extra arguments:

mysql-dump-s3.sh \
    --database db_name \
    --s3-bucket bucket_name \
    --s3-folder /backups/ \
    --dump-extra-args "-udb_user -pdb_password" \

A more extended example:

mysql-dump-s3.sh \
    --database db_name \
    --s3-bucket bucket_name \
    --s3-folder /backups/ \
    # passing some arguments to mysqldump
    --dump-extra-args \
        "-udb_user -pdb_password --ignore-table=db_name.table_to_ignore" \
    # use a custom dumps folder,  instead of /tmp/mysql-dump-s3
    --dump-folder /app-data/dumps \
    # don't remove the local dumps after uploading to S3
    --preserve-raw-dump \
    # remove files in the dumps folder older than 10 days
    --rm-dumps-older-than 10

License

MIT license - http://www.opensource.org/licenses/mit-license.php

shell-mysql-dump-s3's People

Contributors

dgoguerra avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.