MariaDBのインストールと初期設定 | CentOS 7

2021-06-22

概要

CentOS 7から標準のデータベースサーバーがMySQLからMariaDBに変更されました。このMariaDBのインストール方法と初期設定を紹介していきます

MariaDB インストール

MariaDBのインストールは、yumコマンドでおこないます

$ sudo yum install mariadb mariadb-server

MariaDB 初期設定

インストール後のMariaDBの設定ファイルですが、以下のようにほとんど何も設定されていません。

$ sudo cat /etc/my.cnf | grep -v ^#
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
symbolic-links=0

[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid

!includedir /etc/my.cnf.d

また、/etc/my.cnf/dのディレクトリにインクルードされていますが、その中身はほとんど空です

 $ sudo ls -l /etc/my.cnf.d
合計 12
-rw-r--r--. 1 root root 295 12月 10  2015 client.cnf
-rw-r--r--. 1 root root 232 12月 10  2015 mysql-clients.cnf
-rw-r--r--. 1 root root 744 12月 10  2015 server.cnf

$ sudo cat /etc/my.cnf.d/server.cnf | grep -v ^# | grep -v ^$
[server]
[mysqld]
[embedded]
[mysqld-5.5]
[mariadb]
[mariadb-5.5]

サンプルの設定ファイルが、/usr/share/mysql/ にありますので、その中の「my-small.cnf」を使用します

$ sudo ls -l /usr/share/mysql/ | grep cnf
-rw-r--r--. 1 root root    656  3月 31 23:49 README.mysql-cnf
-rw-r--r--. 1 root root   4920  4月  1 01:39 my-huge.cnf
-rw-r--r--. 1 root root  20438  4月  1 01:39 my-innodb-heavy-4G.cnf
-rw-r--r--. 1 root root   4907  4月  1 01:39 my-large.cnf
-rw-r--r--. 1 root root   4920  4月  1 01:39 my-medium.cnf
-rw-r--r--. 1 root root   2846  4月  1 01:39 my-small.cnf

# my-small.cnfを、server.cnfにコピーして書き換えます
$ sudo cp -p /usr/share/mysql/my-small.cnf /etc/my.cnf.d/server.cnf

設定ファイル内で、文字化け対策として、以下の箇所に文字コードの設定を追加します

$ sudo vi /etc/my.cnf.d/server.cnf
[client]
default-character-set = utf8
 
[mysqld]
character-set-server = utf8

MariaDB サービス有効化、及びサービス開始

MarinaDBをサービスを自動起動する設定をおこない、MariaDBのサービスも起動します

# MarinaDBの自動起動を設定
$ sudo systemctl enable mariadb.service
# MarinaDBのサービスを起動
$ sudo systemctl start mariadb.service

MariaDB セキュリティの初期設定

MariaDBのセキュリティ関係の初期設定を、mysql_secure_installationコマンドでおこないます。
基本的には、rootのパスワード設定とおこない、選択肢は「Enter」, 「Y」 で押し進めればOKです

$ sudo 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を押す
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.

# rootのパスワード設定するか? [y]を選択
Set root password? [Y/n] y
# rootのパスワード入力
New password:
# rootのパスワード再入力
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.

# 匿名ユーザーを削除するか? [y]を選択
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.

# rootユーザーのリモートログインをブロックするか? [y]を選択
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.

# テストDBを削除するか? [y]を選択
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.

# ユーザ権限テーブルをリロードするか? [y]を選択
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!

MariaDB 動作確認

rootでログインする際に、パスワードが要求されているか確認する

$ mysql -u root -p
# rootのパスワードを入力
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 12
Server version: 5.5.47-MariaDB MariaDB Server

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

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

# データベースを確認
MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)

MariaDBのデータベース作成及びユーザー追加

データベースを作成し、そのデータベースに権限のあるユーザーを設定します

# MarinaDBにroot でログインします
$ mysql -u root -p
Enter password:

テスト用のデータベース(test01_db)を作成します

MariaDB [(none)]> CREATE DATABASE test01_db DEFAULT CHARACTER SET utf8;

テスト用のデータベース(test01_db)に権限があるユーザー(hoge)を追加します

# hogeユーザーを作成
MariaDB [(none)]> CREATE USER 'hoge'@'localhost' IDENTIFIED BY 'password';

# テスト用のデータベース(test01_db)に権限があるユーザー(hoge)を設定
MariaDB [(none)]> GRANT ALL PRIVILEGES ON test01_db.* TO 'hoge'@'localhost' IDENTIFIED BY 'password';

スポンサーリンク

0
0

LinuxCentOS 7,mariadb

Posted by admin