VPSにデータベースサーバーを構築
実現する機能
会社の財産は多くの場合データで、データは多くの場合、電算システムのデータベースサーバーに格納されています。ここでは、無料のデータベースサーバーの中から、MariaDBの導入手順を紹介します。
事前準備
TeraTermでコマンドを使う方法を理解しておくこと。以下の記述ではTeraTerm画面を表示しています。紫色はキーボードから入力するコマンド(コピペした方が楽ですが、コマンドは覚えられません)、緑はコマンドや処理内容の説明、白は自動表示する部分、赤は注意書きです。
MariaDBの導入手順
(1)MariaDBのインストール
以下の黒背景部分はGNOME端末を表示しています。紫色はキーボードから入力するコマンド(コピペした方が楽ですが、コマンドは覚えられません)、緑はコマンドや処理内容の説明、白は自動表示する部分、赤は注意書きです。
#mariadb-serverをSCLoからインストール
[root@eycwl8s4 ~]# yum --enablerepo=centos-sclo-rh -y install rh-mariadb101-mariadb-server
Loaded plugins: fastestmirror, priorities Dependency Installed: Complete! |
(2)MariaDBの設定と起動
#rh-mariadb101を利用可能にする [root@eycwl8s4 ~]# scl enable rh-mariadb101 bash #mysqlのバージョン確認 #mysqlの場所の確認 #環境変数を読み込むシェルの作成 source /opt/rh/rh-mariadb101/enable #mariadb-server.cnfの編集 #rh-mariadb101-mariadb起動 #rh-mariadb101-mariadb自動起動設定 |
(3)MariaDBの動作確認
#MySQLのInstall [root@eycwl8s4 ~]# mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB In order to log into MariaDB to secure it, we’ll need the current Setting the root password ensures that nobody can log into the MariaDB By default, a MariaDB installation has an anonymous user, allowing anyone Normally, root should only be allowed to connect from ‘localhost’. This By default, MariaDB comes with a database named ‘test’ that anyone can Reloading the privilege tables will ensure that all changes made so far Cleaning up… All done! If you’ve completed all of the above steps, your MariaDB Thanks for using MariaDB! #設定したrootパスワードでログイン Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others. Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement. #ホストの一覧表示 +------+-----------+-------------------------------------------+ | user | host | password | +------+-----------+-------------------------------------------+ | root | localhost | ***************************************** | | root | 127.0.0.1 | ***************************************** | | root | ::1 | ***************************************** | +------+-----------+-------------------------------------------+ 3 rows in set (0.00 sec) #MySQLの終了 [root@eycwl8s4 ~]# |
以上