Is there a way to download the old backups of mysql for my local?
gilbishkosma
PROOP

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

Solved

1 Replies

You totally can, I recommend just using the MySQL client.

  1. Go to your MySQL service, open the “Variables” tab and copy the Host, User, Password, and Database values

  2. Run mysqldump to download the database locally:

mysqldump \
  -h <host> \
  -u <username> \
  -p \
  <database-name> > backup.sql
  1. 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 9 months ago


Railway
BOT

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


Loading...