和6年能登半島地震により亡くなられた方々のご冥福をお祈りするとともに、被害に遭われた皆さまに対し、心よりお見舞い申し上げます。一日も早く被災地の安全が確保され、復旧が進む事を心よりお祈り申し上げます。

MariaDBでWordPressインストールめも

MySQLから派生した「MariaDB」入れてみた。

これもCMS検証用。

・ORACLE VirtualBox バージョン 6.1.10 r138449 (Qt5.6.2)
・CentOS Linux release 7.8.2003 (Core)
・Apache/2.4.6 (CentOS)
・PHP 7.0.33 (cli)
・mysql Ver 15.1 Distrib 5.5.65-MariaDB, for Linux (x86_64) using readline 5.1

yumでインストール(^^)/

# yum -y install mariadb-server mariadb-client
読み込んだプラグイン:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirrors.cat.net
 * extras: mirrors.cat.net
 * updates: mirrors.cat.net
パッケージ mariadb-client は利用できません。
依存性の解決をしています
--> トランザクションの確認を実行しています。
---> パッケージ mariadb-server.x86_64 1:5.5.65-1.el7 を インストール
--> 依存性の処理をしています: mariadb(x86-64) = 1:5.5.65-1.el7 のパッケージ: 1:m                                             ariadb-server-5.5.65-1.el7.x86_64
--> トランザクションの確認を実行しています。
---> パッケージ mariadb.x86_64 1:5.5.65-1.el7 を インストール
--> 依存性解決を終了しました。

依存性を解決しました

================================================================================
 Package               アーキテクチャー
                                     バージョン               リポジトリー
                                                                           容量
================================================================================
インストール中:
 mariadb-server        x86_64        1:5.5.65-1.el7           base         11 M
依存性関連でのインストールをします:
 mariadb               x86_64        1:5.5.65-1.el7           base        8.7 M

トランザクションの要約
================================================================================
インストール  1 パッケージ (+1 個の依存関係のパッケージ)

総ダウンロード容量: 20 M
インストール容量: 107 M
Downloading packages:
(1/2): mariadb-5.5.65-1.el7.x86_64.rpm                     | 8.7 MB   00:04
(2/2): mariadb-server-5.5.65-1.el7.x86_64.rpm              |  11 MB   00:04
--------------------------------------------------------------------------------
合計                                               4.4 MB/s |  20 MB  00:04
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  インストール中          : 1:mariadb-5.5.65-1.el7.x86_64                   1/2
  インストール中          : 1:mariadb-server-5.5.65-1.el7.x86_64            2/2
  検証中                  : 1:mariadb-server-5.5.65-1.el7.x86_64            1/2
  検証中                  : 1:mariadb-5.5.65-1.el7.x86_64                   2/2

インストール:
  mariadb-server.x86_64 1:5.5.65-1.el7

依存性関連をインストールしました:
  mariadb.x86_64 1:5.5.65-1.el7

完了しました!

起動してみる。

# systemctl start mariadb

自動で起動するように設定する。あれ?

# systemctl enable mariadb
Created symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service 

mariadb.serviceを指定してみる。OK?

# systemctl enable mariadb.service

ステータス確認。

# systemctl status mariadb
● mariadb.service - MariaDB database server
   Loaded: loaded (/usr/lib/systemd/system/mariadb.service; enabled; vendor preset: disabled)
   Active: active (running) since 月 2020-09-07 10:40:50 JST; 39min ago
  Process: 1466 ExecStartPost=/usr/libexec/mariadb-wait-ready $MAINPID (code=exited, status=0/SUCCESS)
  Process: 1383 ExecStartPre=/usr/libexec/mariadb-prepare-db-dir %n (code=exited, status=0/SUCCESS)
 Main PID: 1465 (mysqld_safe)
   CGroup: /system.slice/mariadb.service
           tq1465 /bin/sh /usr/bin/mysqld_safe --basedir=/usr
           mq1627 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --log-e...

-----以下、省略-----

ここ(marinaDBの日本語ドキュメント)参考に、rootのパスワード設定したり、匿名ユーザー削除したり・・・ローカルホストの外からrootログインをブロックしたり、test 用データベースを削除したり・・。

# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] Y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] Y
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] Y
 ... Success!

By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] Y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] Y
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

ログインしてみる。

# 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.65-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.

DBとそのDBのユーザ作ってみた。

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

MariaDB [(none)]> GRANT ALL ON hoge.* TO 'hoge'@'localhost' IDENTIFIED BY 'XXXXXXXX';
Query OK, 0 rows affected (0.00 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, host from user;
+--------+-----------+
| user   | host      |
+--------+-----------+
| root   | 127.0.0.1 |
| root   | ::1       |
| root   | localhost |
| hoge   | localhost |
+--------+-----------+
4 rows in set (0.00 sec) 

MariaDB [mysql]> quit
Bye

あと、なんだっけ・・・

文字コードをUTF8に指定した。

# vi /etc/my.cnf.d/server.cnf
# this is read by the standalone daemon and embedded servers
[server]
character-set-server=utf8

WordPressの.tar.gz をwgetでダウンロードして。

# wget https://ja.wordpress.org/latest-ja.tar.gz

解凍して、アクセス権変更して・・・/wp-admin/install.php 叩いて”さぁ、始めましょう!”画面を表示するところまで完了(^^)

最初、エラー500で、なんてことでしょう?!と途方に暮れてましたが、なんてことないPHP が古すぎた(*_*;

PHP5.4.16からPHP 7.0.33にバージョンアップするのに、手こずりました。

# yum install -y --enablerepo=remi,remi-php70,epel php php-devel php-mbstring php-mysqlnd php-mcrypt php-pear php-gd php-fpm php-pecl-xdebug php-opcache php-pecl-memcached