How to export project and database to local site?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Hi there @yarik050829272,
If you are using MySQL or MariaDB, you could use the
mysqldump
command to export your database. First you need to SSH to your server and then run the following command:This will export your database to a file called
database_name.sql
.Then you can use SFTP to download the
.sql
export and your website files. Here is a guide on how to use SFTP with FileZilla:https://www.digitalocean.com/docs/droplets/how-to/transfer-files/
Regards, Bobby