Skip to content

Instantly share code, notes, and snippets.

View willwoodlief's full-sized avatar

Will Woodlief willwoodlief

  • Texas Software Developers
  • Texas, USA
  • 20:38 (UTC -05:00)
View GitHub Profile
@willwoodlief
willwoodlief / mysql_backup
Last active July 28, 2017 00:36 — forked from timkuijsten/mysql_backup
mysql per database backup without mysql.event warning
#!/bin/sh -
# this script is from https://gist.github.com/timkuijsten/6067107
# The important part is not to put the password as an argument to the mysql
# commands, i.e. don't use the -p option. Instead use a .my.cnf file in the home
# dir of the user you are running this script as, i.e. /home/records/.my.cnf if running
# as root. Make the file readable for the owner only: chmod 400 /home/records/.my.cnf
# See: http://stackoverflow.com/questions/17829659/securing-backup-credentials-for-mysqldump/17844997#17844997
umask 007