WINGS(Www INtegrated Guide on Server-architecture)
Www INtegrated Guide on Server-architecture :
   ホーム お問い合わせ サーバーサイド環境構築設定 つぶやき ブックマーク レンタルサーバー 総合FAQ/訂正&ダウンロード このエントリーをはてなブックマークに追加        
  • 刊行書籍情報  [書籍マップ
  • オンライン公開 技術記事
  • シリーズ別書籍リスト
  • 「WINGS News」登録/解除
  • WINGSプロジェクト紹介
  • WINGSプロジェクトメンバ募集





 MariaDBのインストール方法 (例:CentOS 7) 2017/01/20

MariaDBは、フリーで使えるデータベースサーバーです。

  1. MariaDBをインストールする
  2. 以下のコマンドでMariaDBをインストールします。

    # yum -y install mariadb-server mariadb-devel

  3. MariaDBを起動する
  4. 以下のコマンドでMariaDBを起動/停止します。

    # systemctl start mariadb (起動)

    # systemctl stop mariadb (停止)

  5. 初期設定を行う
  6. 以下のコマンドで対話式に、初期設定を行います。
    管理者rootユーザーのパスワード設定や匿名ユーザーの削除、リモートからのrootアクセスの拒否、testデータベースの削除を行います。
    基本的にデフォルトのまま[Enter]で進めていけば構いませんが、最初にrootユーザーのパスワードを聞かれるので設定してください。
    ここではパスワードを"passwd1"と設定します。
    もちろん、パスワードは自分で決めることもできます。

    # mysql_secure_installation
    ...中略...
    Enter current password for root (enter for none):[Enter]
    OK, successfully used password, moving on...
    ...中略...
    Set root password? [Y/n][Enter]
    New password:passwd1
    Re-enter new password:passwd1
    Password updated successfully!
    ...中略...
    All done! If you've completed all of the above steps, your MariaDB installation should now be secure.

    Thanks for using MariaDB!

  7. アクセスを確認する
  8. 以下のコマンドでアクセスを確認します。
    「Welcome to the MariaDB monitor.」と表示され、バージョン番号が確認できれば成功です。

    # mysql -u root -p
    Enter password:passwd1
    Welcome to the MariaDB monitor. Commands end with ; or \g.
    Your MariaDB connection id is 9
    Server version: 5.5.52-MariaDB MariaDB Server

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

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


    MariaDB [(none)]>exit;


著作権情報個人情報保護について広告掲載についてRSSフィードについて
出版社の方々へ会社概要スタッフ紹介サイトマップ  
書籍/記事に関するご質問/お問い合わせは「WINGSお問い合わせフォーム」をご利用ください。
Copyright(c) 1998-2024,Yamada Yoshihiro.  All Right Reserved.