Mysql 5.7透過mysqldump還原資料庫

dbasdk發表於2017-11-30
[root@test tmp]# du -sh test.sql
17G     test.sql
mysqldump備份的檔案

[root@test ~]# mysql -uroot -ptestpassword --default-character-set=utf8 test < /tmp/test.sql
mysql: [Warning] Using a password on the command line interface can be insecure.
ERROR 1049 (42000): Unknown database 'test'
報錯

MySQL [(none)]> create database test;
Query OK, 1 row affected (0.00 sec)

[root@test ~]# mysql -uroot -ptestpassword --default-character-set=utf8 test < /tmp/test.sql
mysql: [Warning] Using a password on the command line interface can be insecure.
還原完成

[root@test ~]# mysql -uroot -p資料庫密碼 --default-character-set=utf8 資料庫 < /tmp/pousheng_b2b2c_prepub2017101.sql
mysql: [Warning] Using a password on the command line interface can be insecure.

資料庫檔案都在這個目錄下:
[root@test mysql]# pwd
/data/mysql

[root@test mysql]# du -sh test
23G     test
還原後的資料庫大小




來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29734436/viewspace-2148085/,如需轉載,請註明出處,否則將追究法律責任。

相關文章