Regular MySQL backup is of utmost importance for any website running with a MySQL database, like WordPress. Because it is the MySQL which stores all the textual and other information. FTP usually have the theme files and post images. In this article, we will show how to write some simple bash scripts to automatically backup your MySQL at a particular time of the day from localhost or a backup server. Many of the webmasters can not understand complex scripts and adding complexity usually invite complex troubles. I have written some versions of scripts for backup with increasing complexity (within the bunch of simple scripts). I have kept all the bash scripts on this GitHub repo.
Most Simple Bash Script For MySQL Database Backup
The below script demands to replace database-name
with real database name. Upon it’s run, it will ask for the password :
1 2 3 4 5 6 7 | #!/bin/sh DBNAME=database-name DATE=`date +"%Y%m%d"` SQLFILE=$DBNAME-${DATE}.sql mysqldump --opt --user=root --password $DBNAME > $SQLBACKUP gzip $SQLBACKUP |
Bash Script For Local MySQL Database Backup
The below script below demands to fill up database-name
, user-name
and your-password
fields for a local backup. This script removes the previous version of the file if the script runs more than once a day :
---
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh FILE=backup.sql.`date +"%Y%m%d"` DBSERVER=127.0.0.1 # DBSERVER=localhost DATABASE=database-name USER=user-name PASS=your-password unalias rm 2> /dev/null rm ${FILE} 2> /dev/null rm ${FILE}.gz 2> /dev/null mysqldump --opt --user=${USER} --password=${PASS} ${DATABASE} > ${FILE} gzip $FILE echo "${FILE}.gz was created:" ls -l ${FILE}.gz |
Bash Script For MySQL Database Backup From Another Server
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh FILE=backup.sql.`date +"%Y%m%d"` DBSERVER=127.0.0.1 DATABASE=database-name USER=user-name PASS=your-password unalias rm 2> /dev/null rm ${FILE} 2> /dev/null rm ${FILE}.gz 2> /dev/null mysqldump --opt --protocol=TCP --user=${USER} --password=${PASS} --host=${DBSERVER} ${DATABASE} > ${FILE} gzip $FILE echo "${FILE}.gz was created:" ls -l ${FILE}.gz |
How To Use The Scripts
You just need to give the script the required permission and execute :
1 2 3 4 | mkdir -p /backup/mysql cd /backup/mysql # have the script here chmod +x /backup/mysql/local-backup.sh |
To make the backup to occur on a nightly basis, create a cronjob :
1 | crontab –e |
Then paste the below command have a daily backup that rotates each 7 days week :
1 | 0 1 * * * /backup/mysql/local-backup.sh 1>> /var/log/mysqlbackup.log 2>>/var/log/mysqlbackup-error.log |
You simply copy and gunzip the file and unpack the database:
1 2 3 4 5 | gunzip ~/my_db.sql.gz # restore an unzipped SQL file mysql -h [host] -u [uname] -p[pass] [dbname] < [backupfile.sql] # restore a zipped SQL file gunzip < [backupfile.sql.gz] | mysql -h [host] -u [uname] -p[pass] [dbname] |
A Safer Bash Script
This is a safer script :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash #Host=server.domain.com Host=localhost BackupDir=/backup/mysql Dump="/usr/bin/mysqldump --skip-extended-insert --force" MySQL=/usr/bin/mysql Today=$(date "+%a") Databases=$(echo "SHOW DATABASES" | $MySQL -h $Host) for db in $Databases; do date=`date` file="$BackupDir/$Host-$db-$Today.sql.gz" echo "Backing up '$db' from '$Host' on '$date' to: " echo " $file" $Dump -h $Host $db | gzip > $file done |
You need to add the below info to my.cnf
file(you can create a ~/my.cnf
file and chmod 600) :
1 2 3 | [client] user = "BACKUP-USERNAME" password = "YOUR-PASSWORD" |
However, the script is not designed for a replication environment.
Conclusion
I have shown some ways to use basic scripts for one MySQL server one database setup. Out of various complex situations we need to opt for complex scripts. Regardless of the fact whether the script is simple or complex: always take a manual full backup and test it. Spin a cloud server instance to create a MySQL server identical to your website and test the backup connecting from the live website. Delete the cloud server instance after testing completed. When you’ll deploy “automation”, the testing automated backup can be every month. Keep the backup both on your external hard drive and some trusted free and paid cloud storage (like Dropbox). It is very easy to backup the FTP, however, some settings files of common plugins need to be on the server (in case of WordPress). We have deliberately created this guide for MySQL only. Always have a whole server backup activated by asking the web host. This may require some extra monthly payment but it is always a time-saving fix.
Tagged With https://thecustomizewindows com/2020/07/simple-bash-script-for-mysql-database-backup/ , bash scripts for sqldump vackup , backup mysql script to cloud , a script that backs up the mysql database every 3 hours , bash backup a database github , bash scripts to backup a oracle SQL database , mysql backup script