Disable automated backups
You can stop automated backups of the Contrast MySQL database. Scheduled backups run through schtasks
on Windows and crontab
on Linux.
To disable automated backups:
For Windows, use Task Scheduler to disable or delete ContrastBackup
.
For Linux:
Switch to the user under which you installed Contrast and run
crontab -l
.This lists the scheduled job. You will see:
0 2 * * * /usr/local/contrast/bin/backup-db.sh
Run
crontab
-e
to delete a single backup. Runcrontab -r
to delete all backups.
Caution
The -e
option allows edits with Vim to delete selected backups. The -r
option deletes everything: be careful when you use it.