Frappe backup time

Hi,
How can i change the sceduling time of backup file

1 Like

@MaysaaSafadi,

frappe backup command is configured in system’s crontab.

e.g. 0 */6 * * * cd /path/to/frappe-bench && /path/to/frappe-bench/bin/bench --site all backup >> /path/to/frappe-bench/logs/backup.log 2>&1

here cronjob run after every 6 hours (0 */6 * * *) to take the site’s backup. You can change the hours in crontab according to your requirement

Thanks,
Makarand

1 Like

I will try it, Thank u @makarand_b