简体   繁体   中英

mysql dump runs, but does nothing

I am trying to restore a database using mysqldump, but nothing seems to happen. I get some output on the screen, but the program stops before it imports anything and does not report any errors.

I am trying to restore a dump using the syntax

mysqldump --log-error=/root/dumplog --verbose --user=myuser mydatabasename < /root/dump.sql

I get no entries in the MySQL log, and in dumplog, all I get is this:

-- Connecting to localhost...
-- Disconnecting from localhost...

The dump file is like 15mb

You don't use mysqldump to restore. To restore you would do:

mysql -uUser -p dbname < /path/to/file.sql

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM