wiki:mysqlbackuprestore
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| wiki:mysqlbackuprestore [2024/06/13 20:37] – removed - external edit (Unknown date) 127.0.0.1 | wiki:mysqlbackuprestore [2024/06/13 20:46] (current) – guidebeacon | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== MySQL Manual Backup and Restore ====== | ||
| + | ===== Manual Backup ===== | ||
| + | |||
| + | There is a script ''/ | ||
| + | |||
| + | To force another backup, just execute the script and another copy will be made. | ||
| + | |||
| + | ===== Manual Restore ===== | ||
| + | |||
| + | There is a copy of the MySQL database backups locally and on BackBlaze. | ||
| + | |||
| + | To restore a local copy, make a copy of the backup zip: | ||
| + | |||
| + | < | ||
| + | cp / | ||
| + | </ | ||
| + | |||
| + | Decompress the zip: | ||
| + | |||
| + | < | ||
| + | cd /tmp | ||
| + | unzip all_dbs.zip | ||
| + | </ | ||
| + | |||
| + | Then run this command to perform the restore from the shell or SSH. | ||
| + | |||
| + | < | ||
| + | mysql -u root beaconte_beacontech < beaconte_beacontech.sql | ||
| + | </ | ||
| + | |||
| + | If restoring a different database, change the database name and file parameter. | ||
| + | |||
| + | The file must be in its raw form and not compressed or it won't work. | ||