0
0

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.

【さくらのVPS】wordpressを外部DBから内部DBに切り替えた時の作業メモ

Last updated at Posted at 2019-05-17

はじめに

外部DB構築の検証の為に借りていたさくらのVPSのお試し期間が無情に過ぎ去った為、内部DBに切り替えました。その時の作業手順メモです。

[DBサーバ]---[Webサーバ]---[インターネット]
⬇︎
[Webサーバ/DBサーバ]---[インターネット]

ちなみに外部DB側にDBは作ったものの中身は空だったので、内部DB側もただ新規にDBを作成してwordpressのDB接続エラーを解消しただけの内容です。

webサーバのあるホストにDBと作業用ユーザを作成

$ mysql -u root -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.60-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> select user, host from mysql.user;
+------+-----------+
| user | host      |
+------+-----------+
| root | 127.0.0.1 |
| root | ::1       |
| root | localhost |
+------+-----------+
3 rows in set (0.01 sec)

MariaDB [(none)]> CREATE DATABASE databasename;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> GRANT ALL PRIVILEGES ON databasename.* TO "database_username"@"localhost" IDENTIFIED BY "database_userpassword";
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> select user, host from mysql.user;
+------+-----------+
| user | host      |
+------+-----------+
| root | 127.0.0.1 |
| root | ::1       |
| root | localhost |
| New! | localhost |   ⬅︎New!のとこに作成したusernameが表示されてたらOK
+------+-----------+
4 rows in set (0.00 sec)

MariaDB [(none)]> exit
Bye

wordpressのDBの参照先を変更

$ cd /var/www/html
$ ls -la wp-config.php
-r-------- 1 apache apache 3874  5月 11 01:07 wp-config.php
$ sudo chmod 600 wp-config.php 
$ sudo vi wp-config.php
[sudo] username のパスワード:

///

// ** MySQL 設定 - この情報はホスティング先から入手してください。 ** //
/** WordPress のためのデータベース名 */
define('DB_NAME', 'database_name');

/** MySQL データベースのユーザー名 */
define('DB_USER', 'database_username');

/** MySQL データベースのパスワード */
define('DB_PASSWORD', 'database_userpassword');

/** MySQL のホスト名 */
define('DB_HOST', '192.168.0.3');    ⬅︎ローカルIPから"localhost"に書き換え

///

書き換え権限を外す

$ sudo chmod 400 wp-config.php 
$ ls -la wp-config.php
-r-------- 1 apache apache 3872  5月 16 19:07 wp-config.php

ブラウザでURL叩いてみましょう。

http://111.222.333.444/wp-admin/install.php

はい、この通り。

screencapture-160-16-126-146-wp-admin-install-php-2019-05-16-19_20_49.png

お疲れ様でした。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?