CentOS に MariaDB をインストールして、初期設定から動作確認までをメモします。文字コードの設定と初期設定のコマンドをすぐに忘れるので。。。
インストールから初期設定まで
リポジトリの追加は不要で標準リポジトリからインストールできます。
1 |
# yum -y install mariadb-server |
インストール後に「ひとまずこれだけやっておく」こととして、ここでは文字コードの指定のみ行います。/etc/my.cnf の [mysqld] セクションに以下を追記します。
1 2 |
[mysqld] character-set-server=utf8 |
Mariadb の起動と自動起動設定を行います。
1 2 |
# systemctl start mariadb # systemctl enable mariadb |
初期設定を行います。mysql の root のパスワードの設定もできるので、インストール後に実行しておくべきコマンドです。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# 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):★そのままEnterキー押下 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 ★rootパスワードの設定:yを押下してパスワードを2回入力 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 ★匿名ユーザの削除: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 ★rootのリモートログインを禁止 ... 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! |
MariaDB への 接続・動作確認
インストールと初期設定が完了したので、正常に接続できるか、正常に稼働しているか、文字コードの設定が反映しているかの確認を行います。
まず、Mariadbに接続します。先程設定したrootのパスワードを使用します。
1 2 3 4 |
# mysql -uroot -p Enter password: パスワードを入力 : MariaDB [(none)]> |
Mariadbのプロンプトが返ってくることを確認します。
設定した文字コードが反映されているか確認します。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
MariaDB [(none)]> show variables like 'char%'; +--------------------------+----------------------------+ | Variable_name | Value | +--------------------------+----------------------------+ | character_set_client | utf8 | | character_set_connection | utf8 | | character_set_database | utf8 | | character_set_filesystem | binary | | character_set_results | utf8 | | character_set_server | utf8 | | character_set_system | utf8 | | character_sets_dir | /usr/share/mysql/charsets/ | +--------------------------+----------------------------+ |
以下は変更前の文字コードです。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
MariaDB [(none)]> show variables like 'char%'; +--------------------------+----------------------------+ | Variable_name | Value | +--------------------------+----------------------------+ | character_set_client | utf8 | | character_set_connection | utf8 | | character_set_database | latin1 | | character_set_filesystem | binary | | character_set_results | utf8 | | character_set_server | latin1 | | character_set_system | utf8 | | character_sets_dir | /usr/share/mysql/charsets/ | +--------------------------+----------------------------+ |
現在のデータベースを確認してみます。
1 2 3 4 5 6 7 8 |
MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | +--------------------+ |
現在のユーザを確認してみます。
1 2 3 4 5 6 7 8 9 |
MariaDB [(none)]> select user,host,password from mysql.user -> ; +------+-----------+-------------------------------------------+ | user | host | password | +------+-----------+-------------------------------------------+ | root | localhost | *xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx| | root | 127.0.0.1 | *xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx| | root | ::1 | *xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx| +------+-----------+-------------------------------------------+ |
確認はこのくらいでしょうか。
その他
Web/DB サーバが別で構成されている場合などで、firewalld を有効にしている場合は、許可設定が必要となります。
1 2 |
# firewall-cmd --add-service=mysql --permanent # firewall-cmd --reload |
以上です。
↓↓↓ 持っていると便利な一冊。