MySQL / MSSQL can produce database backups to the local disk using built in tools. How to make Duplicati backup those backup files to the remote server?
Is it possible to run pre-backup scripts to backup the SQL databases and then send them to the remote server?
Basically, How to do SQL backups with Duplicati? Thank you.
That is what I do. A small bash script that calls mysqldump is run using the --before-script (I think that’s the option flag) flag. I also ended up increasing the script timeout.
So if you need to create an MS SQL backup you just need to check the appropriate database from the sources and you are care-free for flushing buffers etc?
Aren’t there any extra options involved apart from snapshot policy → required to be sure that the backup is taken correctly?
Without that, there might be some other way, provided one container can get to the files of another.
Containers typically provide file isolation, which typically can be administratively configured around.
You’d probably have to use some non-VSS methods to get a stable set of files for Duplicati backup.
That likely clinches the idea that you won’t be able to do VSS-based backups. Maybe another type.
Duplicati scripting options might help prepare files from database before the actual backup is done.
In teory I can run a script to execute a query to create the backup files from sql server, the problem it’s how to execute sqlcmd from the duplicati container
Tools outside the container covers how to get in, but I haven’t found where MS talks about getting out, though container-to-container seems like a reasonable setup once you’re on containers. Not my area.
Could going in from the host to both containers via docker exec coordinate things across them both?