By vlladoffwork
Hi. There is a local mysql database on a cloud server with a size of 52GB+ How do I export it to DigitalOcean Managed Databases?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi there @vlladoffwork,
I would usually use one of the tools listed on the MySQL website for exporting databases. I would usually default to the mysqldump tool here:
https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html
Example usage:
- mysqldump -h your_host -u your_user -p your_db_name > db-name.sql
However, for some extra performance I might sometimes use mysqlpump instead:
https://dev.mysql.com/doc/refman/8.0/en/mysqlpump.html
The syntax is quite similar:
- mysqlpump -h your_host -u your_user -p your_db_name > db-name.sql
Once you have the databased exported into a .sql file, you can import it with the mysql command into your Managed MySQL cluster.
Syntax:
- mysql -h your_host -u your_user -p your_db_name < db-name.sql
Hope that this helps! Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.