Nov 26, 2023 Last updated May 8, 2024 1 min read How to Backup and Restore MySQL DB Related: Ghost BlogBackupmysqldump -u root -p --databases ghost_production > ghost_production_backup.sql Restoremysql -u root -pYOUR_PASSWORD destination_db < db_backup.sql ReferencesThe complete mysqldump guide (with examples)
Comments