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

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/ |
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 |
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 |
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 |
Use command crontab -e to open cron file via editor:
ubuntu@django-website:/etc/cron-scripts$ crontab -e |
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]](/media/images/profile_pic/IMG-20181130-WA0003.jpg)
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.