6
2

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.

RaspberryPi にWordpressをインストール

Posted at

RaspberryPi にWordpressをインストールして初期設定までをメモしました。

事前準備

不足している場合は、以下のパッケージを追加で導入します。
・Apache2.4
・mariadb
・PHP7.0

Wordpress から mariaDB へアクセス用のユーザを作成

新規データベースを作成します。
ここでは例として、wordpress という名前で作成しています。

pi@raspberrypi:/var/www/html $ sudo mysql
MariaDB [(none)]> create database wordpress;

新規ユーザを作成します。
設定するパスワードは、任意のパスワードを指定します。

pi@raspberrypi:/var/www/html $ sudo mysql
MariaDB [(none)]> create database wordpress;

MariaDB [(none)]> CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'password';
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [mysql]> select user,password,plugin from user;
+---------------------+-------------------------------------------+-------------+
| user                | password                                  | plugin      |
+---------------------+-------------------------------------------+-------------+
| root                |                                           | unix_socket |
| wordpress           | *06B0E0234517A1F1A9BA352FF62B54679CA45F6F |             |
+---------------------+-------------------------------------------+-------------+
2 rows in set (0.00 sec)

MariaDB [mysql]> exit
Bye

先に作成したデータベースに対して新規作成したユーザへアクセス権を付与します。

pi@raspberrypi:/var/www/html $ sudo mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 19
Server version: 10.1.38-MariaDB-0+deb9u1 Raspbian 9.0

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)]> GRANT ALL on wordpress.* TO 'wordpress'@'localhost' IDENTIFIED BY 'vmware33';
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit
Bye

Raspberry Pi 3 に WordPress をインストール

WordPressのモジュールは、こちらからダウンロードできます、
2019/6/1 現在の最新版数は、5.2.1 でした。
インターネットに接続できる環境の場合は、wget コマンドで直接ダウンロードできます。

cd /var/www/html
rm *
wget http://wordpress.org/latest.tar.gz
tar xzf latest.tar.gz
mv wordpress/* .
rm -rf wordpress latest.tar.gz
chown -R www-data:www-data /var/www/html

WordPress の初期設定

ブラウザ経由で設定を進めます。

言語設定をします。
009.jpg
事前に作成しておいたデータベースにアクセスする設定を入力します。
010.jpg
インストールを実行します。
011.jpg
管理用のユーザ設定をします。
012.jpg
完了したら、ログインします。
013.jpg
先ほど設定したユーザ、パスワードでログインします。
014.jpg
お疲れさまでした。
015.jpg

参考サイト


[Raspberry Pi 3 に WordPress をインストール]
(https://blog.smallserver.jp/raspberry-pi-3-%E3%81%AB-wordpress-%E3%82%92%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB)

6
2
2

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
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?