8.58

v 11.0 Third Party 7
Availability
Odoo Online
Odoo.sh
On Premise
Technical Name auto_db_backup
LicenseGPL-3
Websitehttps://stackoverflow.com/cv/hizbul
You bought this module and need support? Click here!

Auto Database Backup



Features:
1. This module allows you to backup your database at your defined directory in your defined time.
2. It is useful in cases of deleting old databases.
3. You can can take backup any time you want.

Configuration: Auto DB Backup

Setting for database backup

Go Settings > General Settings > Database Backup. Set your database name and path where you want to save your database along with old db keeping days.

Configuration: Scheduler

Settings db backup scheduler.

Go to 'Settings / Automation / Scheduler Actions'. Find out 'Database Backup' and set Execute Every and Next Execution Date as per your requirement.

Contact / Support

Expert Ideas and ERP Solution To Help You Grow

Get Expert Help and assistance related to the new Odoo feature, And All ERP Related solutions at one place. We offer Solutions regardless the size of a business, Contact us through e-mail at support@codesolution.biz And Get Professional help that you want to build your business better. You can also reach me over skype and whatsapp too.

Skype: hizbul_ku Whatsapp: +8801918019179

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author or have a question related to your purchase, please use the support page.
Doesn't work with docker
by
pathewhite
on 12/4/18, 4:24 AM

by
David Montero Crespo
on 12/18/20, 12:43 PM

Replace this line in the module so that it works in Docker

os.system("pg_dump {} > {}".format(db_name, db_path))


for something like this

os.system('docker exec -i ' + mysqlcontainer + ' pg_dump -U odoo ' + mydb + ' > ' + db_path + '/'+db_name++.sql')