「インストール - MariaDB(Raspberry Pi)」の版間の差分
ナビゲーションに移動
検索に移動
(ページの作成:「== 概要 == <br><br> == MariaDBのインストール == 以下のコマンドを入力して実行する。<br> sudo apt-get install mariadb-client mariadb-server <br>…」) |
(→設定) |
||
17行目: | 17行目: | ||
以下、説明を読みながら設定する | 以下、説明を読みながら設定する | ||
Enter current password for root (enter for none): ← Enterキーを押下 | Enter current password for root (enter for none): ← Enterキーを押下 | ||
Change the root password? [Y/n] y | Change the root password? [Y/n] y ← yキーを押下 | ||
Remove anonymous users? [Y/n] y | Remove anonymous users? [Y/n] y ← yキーを押下 | ||
Disallow root login remotely? [Y/n] y | Disallow root login remotely? [Y/n] y ← yキーを押下 | ||
Remove test database and access to it? [Y/n] y | Remove test database and access to it? [Y/n] y ← yキーを押下 | ||
Reload privilege tables now? [Y/n] y | Reload privilege tables now? [Y/n] y ← yキーを押下 | ||
Thanks for using MySQL | Thanks for using MySQL | ||
<br><br> | <br><br> |
2019年12月10日 (火) 20:35時点における版
概要
MariaDBのインストール
以下のコマンドを入力して実行する。
sudo apt-get install mariadb-client mariadb-server
インストールしたMariaDB Serverのバージョンを確認する。
dpkg -l | grep -i mariadb
設定
MariaDBの設定を行うため、mysql_secure_installationを実行して設定を行う。
mysql_secure_installationを実行する。
sudo mysql_secure_installation 以下、説明を読みながら設定する Enter current password for root (enter for none): ← Enterキーを押下 Change the root password? [Y/n] y ← yキーを押下 Remove anonymous users? [Y/n] y ← yキーを押下 Disallow root login remotely? [Y/n] y ← yキーを押下 Remove test database and access to it? [Y/n] y ← yキーを押下 Reload privilege tables now? [Y/n] y ← yキーを押下 Thanks for using MySQL