4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

mysqldumpでバックアップ&復元

Posted at

バックアップ

SQLベースのバックアップが可能です。存在するデータをすべてSQLにしてテキスト形式に保存できます。

mysqldump -u root -x --all-databases > hoge.sql

これですべてのデータベースのバックアップが可能です。

特定のデータベースのみのバックアップの場合は、

mysqldump -u root データベース名 > hoge.sql

とします

復元

mysqldumpのすべてのデータベースのバックアップを復元するには

mysql -u root -p < hoge.sql

のように、mysqlクライアントにファイルの内容をリダイレクトしてあげるだけです。

特定データベースのみの復元は

mysql -u root データベース名 < hoge.sql

とします

4
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?