How to create automatic backup for our database using cron and bash

| Added: Nov. 7, 2023 | Total views: 630


Header image

In this post I will show you how to create automatic backup for our database using cron and bash.

My Django project has a database file called db.sqlite3 which is as you can see sqlite3 file. Inside I have profile settings like social media links, created articles and newsletter subscribers list. I will create a backup every 12 hrs and in my case it will be a full backup.

Preparation

To store my backup, I will create bd_backup dir inside my var directory:

ubuntu@django-website:/var$ mkdir db_backup

Then I will create a file for our database backup script. Good practice is to locate your scripts used by cron inside etc location. We will create a sub dir called cron-scripts/.

ubuntu@django-website:/var$ cd /etc/
ubuntu@django-website:/etc$ mkdir cron-scripts
ubuntu@django-website:/etc/cron-scripts$ touch db_backup.sh

let’s make our script executable using:

ubuntu@django-website:/etc/cron-scripts$ chmod +x db_backup.sh

to run and edit we will use nano editor. Remember as /etc/ is owned by root we have to insert sudo command to get permission for editing.

ubuntu@django-website:/etc/cron-scripts$ sudo nano db_backup.sh

 

Coding 

Once we have created and opened our script file, lets make some code:

# this finds out db file inside our home dir
source_dir=$(find ~ -name "db.sqlite3")
echo $source_dir
echo "This is directory with db file $source_dir"
# create backuptime for our unique backup name
backuptime=$(date +%s)
echo $backuptime
destination_dir=/var/db_backup
echo $destination_dir
# create compressed file with our db inside
sudo tar --absolute-names -czvf $destination_dir/db-backup-$backuptime.tar.gz $source_dir 

sudo - is needed because we are saving into root directory, 

--absolute-names - attribute prevents relative path error,

-czvf - are standard attributes for this function for more details check documentary.

 

Cron setup

Lets test script using:

ubuntu@django-website:/etc/cron-scripts$ ./db_backup.sh 

and check results:

ubuntu@django-website:/var/db_backup$ ls
db-backup-1699309218.tar.gz

As we can see, the script has successfully created a backup inside db_backup directory. Now let's use cron to automate it.

ubuntu@django-website:/etc/cron-scripts$ ls
db_backup.sh

Use command crontab -e to open cron file via editor:

ubuntu@django-website:/etc/cron-scripts$ crontab -e
0 */12 * * * /bin/bash /etc/cron-scripts/db_backup.sh

I'm setting up a backup job to be done every 12 hrs at 00.00 and 12.00. Please remember that cron script are executed within the context of the user who created the cron job.

 

I hope you enjoyed reading my post. For more please subscribe to my newsletter. Thank you and see you next time 🙂

 

 



[photo]
Aleksander Legkoszkur
IT Administrator

A technology fan who likes to stayes at night until he finds a solution. A small handyman who tries to fix everything he can get his hands on. Worked with technologies like:

Windows Server / Linux

Oracle Cloud

Python / T-SQL / PL-SQL / HTML / CSS 

Oracle / SQL Server

and knows how to deal with hardware repairment.