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
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.
hansen
Thank you so much, you really helped me.
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.So it could be something like this:
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