LinuxはMariaDB(Mysql)と簡単な構成をインストールします

1210 ワード

MariaDBのインストール
  • インストールコマンドyum -y install mariadb mariadb-server
  • インストール完了MariaDB、まずMariaDB systemctl start mariadb
  • を起動する.
  • 起動systemctl enable mariadb
  • を設定する.
  • MariaDBに関する簡易構成mysql_secure_installation
  • まずパスワードを設定すると、まずパスワード
  • を入力するように要求されます.
    Enter current password for root (enter for none):
  • パスワード設定
  • Set root password? [Y/n] 
  • その他の構成
  • Remove anonymous users? [Y/n] 
  • 初期化MariaDB完了、テスト登録
  • mysql -uroot -ppassword
  • が完了しました.

  • ユーザーの追加、権限の設定
  • ユーザコマンドmysql>create user username@localhost identified by 'password';
  • を作成する.
  • ユーザーを直接作成し、許可するコマンドmysql>grant all on *.* to username@localhost indentified by 'password';
  • 外網登録権限mysql>grant all privileges on *.* to username@'%' identified by 'password';
  • を付与する.
  • 権限を付与し、mysql>grant all privileges on *.* to username@'hostname' identified by 'password' with grant option;
  • 権限を付与することができる.
  • 更新権限flush privileges;