9 months ago
Is there a way to download the old backups for my local?
I wanna download the old backups and match there data with the latest version of mysql
1 Replies
9 months ago
You totally can, I recommend just using the MySQL client.
Go to your MySQL service, open the “Variables” tab and copy the Host, User, Password, and Database values
Run mysqldump to download the database locally:
mysqldump \
-h <host> \
-u <username> \
-p \
<database-name> > backup.sqlAfter hitting enter, it will prompt for the password (copy-paste from the dashboard).
This shoudl get you that local copy of your DB.
- Angelo
Status changed to Awaiting User Response Railway • 9 months ago
7 months ago
This thread has been marked as solved automatically due to a lack of recent activity. Please re-open this thread or create a new one if you require further assistance. Thank you!
Status changed to Solved Railway • 7 months ago