Backup files and databases easily with cron

This post is an extension to my former tutorial : Backup all your MySQL databases with one line of cron, which can now be considered as obsolete since some people reported having some issues with the gzip file generation.

So here is another attempt at dealing with the security of your files and databases on your domain.

In this tutorial, I assume your web host has Cpanel installed with the cron features that will backup everything for us at regular intervals.

To access the Cron Manager in Cpanel :

  • Go to Cpanel > Cron Jobs
  • Select the Standard or Advanced view – the choice is yours !

Let’s assume you chose the “Standard view” for the sake of simplicity and ease of configuration. First, backup your files.

1 – Cron job to backup your home directory

This is useful when you do not keep track of all the changes you make on your website : when you edit files online or allow image uploads etc.

You need to set this backup as regularly as your disk space allows it: having weekly backups is good if you do not modify your files too often.

Here’s the cron job to add:

date=`date -I`; tar -zcf backup_$date.tgz ./public_htmlCode language: JavaScript (javascript)

Explanations : we first define the date of the day in the variable $date, that will later be used for the filename creation.

The date element is very useful to sort your backups if you don’t download them every week. Then we compress our public_html folder into a tgz file.

In order to put this cron in place, just copy this line in the Command field, select your backup frequency and save.

2 – Cron job to backup your MySQL databases

The MySQL databases are where all the information is stored and this is the most important thing when your site or forum is database-driven, as more and more sites are nowadays.

Losing a few days of data can be *very* frustrating, both for you as an administrator and for your users.

This kind of backup needs to be run every day or so (still depends on the size of your databases !).

date=`date -I`; mysqldump -uDBUSER -pDBPASS --all-databases | gzip > /home/CPANEL/xbackup_$date.sql.gzCode language: JavaScript (javascript)

Explanations: this kind of backup requires some extra work on your part because you need to create a MySQL user that will be able to access all your databases to create a dump file with all the structures and data.

Here’s how to do it, step by step :

Create a new MySQL user “backup”. Go to Cpanel > MySQL Databases and create the user, granting him all privileges on your databases.

Fill in the cron job above with :

  • DBUSER as the MySQL user you have just created (“backup” in our example)
  • DBPASS as the password associated with the MySQL user.
  • CPANEL as your Cpanel username

The date element is still used as part of the backup filename for easy maintenance. The script makes a dump of all your databases using the login information of your backup MySQL user and gzipping the dump file on the fly at the root of your account.

Make sure you edit the variable in capital letters so as to reflect your settings. Set your backup frequency, save, and relax. Your SQL data should now be saved every day (recommended).

This should get you started into having your own up-to-date backups. I will address the storing of these backups on another server in a future post.

In the meantime, get these up and running ASAP!

Envie d'ajouter des fonctionnalités exceptionnelles à votre site WordPress ou WooCommerce? Je suis là pour vous aider.

Explorons les possibilités ensemble »

Articles conseillés :

Opinions