Created
May 28, 2024 09:01
-
-
Save mdsami/d95ae1b33a6c3fcf91fe65e7450d7f21 to your computer and use it in GitHub Desktop.
Mysql backup and upload to S3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#---------------------------------------- | |
# OPTIONS | |
#---------------------------------------- | |
USER='root' # MySQL User | |
PASSWORD='root' # MySQL Password | |
DAYS_TO_KEEP=15 # 0 to keep forever | |
GZIP=1 # 1 = Compress | |
BACKUP_PATH='/Users/hellotask/Desktop/mysql' | |
#---------------------------------------- | |
# Create the backup folder | |
if [ ! -d $BACKUP_PATH ]; then | |
mkdir -p $BACKUP_PATH | |
fi | |
# Get list of database names | |
databases=`mysql -u $USER -p$PASSWORD -e "SHOW DATABASES;" | tr -d "|" | grep -v Database` | |
for db in $databases; do | |
if [ $db == 'information_schema' ] || [ $db == 'performance_schema' ] || [ $db == 'mysql' ] || [ $db == 'sys' ]; then | |
echo "Skipping database: $db" | |
continue | |
fi | |
date=$(date -I) | |
if [ "$GZIP" -eq 0 ] ; then | |
echo "Backing up database: $db without compression" | |
mysqldump -u $USER -p$PASSWORD --databases $db > $BACKUP_PATH/$date-$db.sql | |
else | |
echo "Backing up database: $db with compression" | |
mysqldump -u $USER -p$PASSWORD --databases $db | gzip -c > $BACKUP_PATH/$date-$db.gz | |
fi | |
done | |
# Delete old backups | |
if [ "$DAYS_TO_KEEP" -gt 0 ] ; then | |
echo "Deleting backups older than $DAYS_TO_KEEP days" | |
find $BACKUP_PATH/* -mtime +$DAYS_TO_KEEP -exec rm {} \; | |
fi | |
#Mysql restart | |
sudo systemctl restart mysql | |
#brew services restart mysql | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment