By visarunas
The documentation for Managed Databases states backups are only held for a week. I want to keep longer term backups, but can’t make them manually without SSH access which Managed Databases don’t give. Is there a way to get long term backups for a MySQL Managed Database?
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!
Accepted Answer
Hi there @visarunas,
What I usually do is use a MySQL backup tool like mysqldump
for example. It allows you to export your databases without SSH access.
To export a backup you could run the following command:
mysqldump -h your_database_hostname -u your_username -p your_database_name > your_database_name-$(date +%F).sql
You could also take a look at this tutorial here for more information.
Hope that this helps. Regards, Bobby
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.