BackWPupでとった移行元の.tar.gzのバックアップ(ローカルにある)を移行先(リモートにある)に移す。
$ scp -i 秘密鍵ファイル Downloads/バックアップファイル.tar.gz ec2-user@IPアドレス:~/
そして/var/www/html/下で解凍
$ tar -zxvf バックアップファイル
MySQLにwordpressというデータベースを作り、そこにwordpress.sql を流す。
mysql> CREATE DATABASE wordpress charset utf8; Query OK, 1 row affected (0.00 sec) mysql> GRANT ALL PRIVILEGES ON wordpress.* TO "wpuser"@"localhost" IDENTIFIED BY "himitsu"; Query OK, 0 rows affected (0.00 sec) mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) mysql> \q [root@ip-172-30-2-157 html]# mysql -uroot -p -Dwordpress < wordpress.sql Enter password:
サーバー移行完了!!!