Is there a way to download the old backups of mysql for my local?
gilbishkosma
PROOP
a year 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
a year 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.sql- After 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 • about 1 year ago
Railway
BOT
a year 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 • 11 months ago