Understood in this post that it’s not possible to directly download managed database backups. But it mentions that it’s possible by using rsync/SFTP.
The post: https://docs.digitalocean.com/support/can-i-download-a-backup-or-snapshot/
Any more info about this? If it’s even possible?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Heya, @587e61006dd54edeacd45725d620d0
You can import/export your database using tools like
mysqldump
(for MySQL),pg_dump
(for PostgreSQL)https://docs.digitalocean.com/products/databases/mysql/how-to/import-databases/
https://www.digitalocean.com/community/questions/how-to-download-a-database-from-managed-database-cluster
You can use tools like
rsync
orsFTP
to download the database backup if the backup itself it’s present on your droplet. You can first usemysqldump
orpg_dump
to backup the database on your droplet and then usersync
to download the backup on remote server.To share your support for this feature, vote for downloading snapshots and backups on ideas.digitalocean.com.
Hope that this helps!