Report this

What is the reason for this report?

How to export mysql database with terminal

Posted on May 29, 2017

Hello Everyone

I want to get (export) mysql database , i cant use this url http://site.com/phpmyadmin because does not exists i have already installed phpmyadmin in terminal but there is nothing, so i decide to export database from terminal , do anybody knows how to export mysql database from terminal

i used this code mysql -u [username] -p newdatabase < [database name].sql

maybe a database exported but where is that files location dont know :/ i want just sql file

thanks



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!

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.

hansen

Thank you so much, you really helped me.

Hi @levan100

The code example you’ve supplied is for importing data - not exporting.

You should use mysqldump, since it tries to do the data dump without blocking the database tables.

mysqldump -u [username] -p [database-you-want-to-dump] > [path-to-place-data-dump]

So it could be something like this:

mysqldump -u root -p mydatabase > /home/myuser/database-dump.sql

Then the database dump would be /home/myuser/database-dump.sql

You can read more about mysqldump here: https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.