By kjimenezdev
I have some MySQL Managed Database Clusters… and I want to be able to download a backup from some months ago…
Is there a way to do so?
How?
Thanks in advance.
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!
Hello, @kjimenezdev
As per Rajkishore’s reply there is no way to download the database at the moment. However you can manually export the database via ssh.
You can simply use the mysqldump command via ssh in order to export your databases and then copy them anywhere else (either locally or to another server) using scp or rsync.
The command will look like this:
- mysqldump -u [username] -p [database-you-want-to-dump] > [path-to-place-data-dump]
So it could be something like this:
- mysqldump -u root -p mydatabase > /home/myuser/database-dump.sql
You can check this article as well because everything is explained in detail:
Regards, Alex
Hi @kjimenezdev,
Currently, there is no way to download database backup from the cloud panel; you can initiate mysqldump level backup to export the database to your local machine/remote server.
The below product documentation can guide you with mysqldump:
As we continue to work on improving our products and services, we encourage you to share your thoughts, ideas, or feedback you have at https://ideas.digitalocean.com/ This will help us to better prioritize features that you feel need more attention.
I hope this helps!
Regards, Rajkishore
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.