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?
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.
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
See this article https://www.digitalocean.com/products/managed-databases-mysql/