Database JUNKY

MySQL,MariaDBを中心としたブログです

MariaDBを数秒でインストールする手順

mariadbyumでインストールする際の簡易手順

細かい設定は別としてインストールして起動するまでだったら、数秒で終わります、そんな手順です。こちらでは、インストールから起動までを説明していきます

Mariadb Essentials

Mariadb Essentials

MariaDBリポジトリをインストール

さっそくですがインストール手順です。MariaDBは、MariaDBのサイトで、リポジトリを管理しておりますので、直接URLを入力してあらかじめインストールしておきます

rpm --import https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
cat << '_EOT_' > /etc/yum.repos.d/mariadb.repo
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.0.23/centos6-x86/
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
enabled=1
_EOT_

ヒアドキュメントのため、すべてをコピーしてコンソールに貼付けてください

cat << '_EOT_' > /etc/yum.repos.d/mariadb.repo
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.0.23/centos6-amd64/
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
enabled=1
_EOT_
# yum --enablerepo=mariadb search maria   
----
=============================================== N/S Matched: maria ===============================================
MariaDB-Galera-server.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-cassandra-engine.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-client.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-common.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-compat.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-connect-engine.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-devel.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-oqgraph-engine.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-server.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-shared.x86_64 : MariaDB: a very fast and robust SQL database server
MariaDB-test.x86_64 : MariaDB: a very fast and robust SQL database server
innotop.noarch : A MySQL and InnoDB monitor program


yum install MariaDB-devel MariaDB-client MariaDB-server MariaDB-common MariaDB-connect-engine MariaDB-shared MariaDB-cassandra-engine.x86_64

/etc/init.d/mysql start

インストール後の起動確認

どうでしょう?あっさりインストールできたかと思います。あとは、MariaDBを起動してMariaDBのコンソールに入れるかを確認してみます

MariaDBの起動

とりあえず起動するか確認してみます

/etc/init.d/mysql start
----
Starting MySQL. SUCCESS! 

はい、あっさり起動しましたね

MariaDBのコンソールにログインできるか確認する

こちらもあっさりいきます。Linuxのコンソール上から以下の文字を入力してください。以下のようなコンソールが立ち上がったと思います。

mysql
-------------------------------
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 10.0.23-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)]>