MySQL
Learn how to upload MySQL database backups to Filebase.
What is MySQL?
1. You can use the following command to create a dump of your MySQL data from all databases.
mysqldump -u [user] \
-p [password] \
-h [host] \
--single-transaction \
--routines --triggers \
--all-databases2. Then, save the output of this command to a file:
3. Then you will need to upload the mysql_backup.sql.gz file to Filebase.
mysql_backup.sql.gz file to Filebase.5. Configure AWS CLI to work with Filebase and your Filebase account. To do this, run the command:
6. After completing the prompt, you can upload your mysql_backup.sql.gz file file to Filebase with the command:
mysql_backup.sql.gz file file to Filebase with the command:Last updated