Skip to content

Commit

Permalink
Update how-to-create-a-backup-and-download-it-to-your-local-machine.md
Browse files Browse the repository at this point in the history
Changed this snippet:
mysqldump database > /data/web/backup_hypernode/database_[date].sql
To
mysqldump --single-transaction database > /data/web/backup_hypernode/database_[date].sql
on customer feedback #655853 Support already used this performing mysqldump's.
  • Loading branch information
NickSiemonsma authored Sep 22, 2023
1 parent 6b9a990 commit 8b80d07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If your application is in another folder you need to replace "/data/web/magento2

In this step you'll create a dump of your database, and zip that dump into a .zip file. To do this you need to know the name of the database.

- `mysqldump database > /data/web/backup_hypernode/database_[date].sql`
- `mysqldump --single-transaction database > /data/web/backup_hypernode/database_[date].sql`
- `zip -ry /data/web/backup_hypernode/database_backup_[date].zip /data/web/backup_hypernode/database_[date].sql`

### Zip Both Backups into a Single .zip File
Expand Down

0 comments on commit 8b80d07

Please sign in to comment.