ラズパイでのMQSLのインストール
WordPressをインストールしようとしているのだけれど、PHPからMysqlの拡張機能が使えないと言われ、Mysqlを単独でいじってみたのだけれど、ユーザー登録とパスワードの所で引っかかってしまい旨く行かない。パッケージの削除などもやってみたが、前の設定が残っているかのような動きで同省もなくなった。
そこでやむなくSDカードを変えてラズパイのインストールから初め、立ち上がったところでMysqlをインストールしてみることとした。
以下の内容はこのサイトを参考にさせてもらった。
インストールはこれまでと同じ以下のとおりである。
pi@raspberrypi:~ $ sudo apt-get install mysql-server
確認を込めてmysqlを実行すると、
pi@raspberrypi:~ $ mysql -u root -p
Enter password:
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
設定したはずのないパスワードが要求されたので断念、
参考サイトによれば最新のraspbian(Stretch)ではmysqlではなくmariadbが推奨されているとのこと。
先のmysqlをインストールした際の出力結果の確認から確かにmariadbをインストールした結果が残っていたそうでmysqlではなくmariadbとコマンドを変更してログインしてみる。
pi@raspberrypi:~ $ mariadb -u root -p
Enter password:
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
同様にパスワード要求が来てしまった。
権限の問題ではと感じたので以下を実行すると
pi@raspberrypi:~ $ sudo mariadb
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 10.1.37-MariaDB-0+deb9u1 Raspbian 9.0
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
MariaDB [(none)]> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
MariaDB [mysql]>
ログインが出来た。quit で終了
パスワードの設定画面がなかったのでログインできなかったのではと思い参考サイトの記事通りパスワードを設定した。
ここからは数行は不要のようである。
pi@raspberrypi:~ $ sudo systemctl start mariadb.service
$ ps auxw | grep mariadb.service
で起動を確認したが、動いる様子はない。名前の違うものが動いているのであろうか。
まぁめげずに先に進んでみる。
ここからは必要
pi@raspberrypi:~ $ sudo /usr/bin/mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
パスワードを設定していないのでEnterを入力
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n] Y
New password:xxxxxxxx
Re-enter new password:xxxxxxxx
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] Y
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] Y
... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] Y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] Y
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
pi@raspberrypi:~ $ これで終了した。
パスワードの設定と後は質問に対して全てYesと答えて終了した。
ログインしてみる
pi@raspberrypi:~ $ mariadb -u root -p
Enter password:
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
失敗した。設定されているか確認する。
pi@raspberrypi:~ $ sudo mariadb
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 13
Server version: 10.1.37-MariaDB-0+deb9u1 Raspbian 9.0
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
MariaDB [mysql]> select user,password,plugin from user;
+------+-------------------------------------------+-------------+
| user | password | plugin |
+------+-------------------------------------------+-------------+
| root | *811AF86F5BF09B68E9A755F8FB99D2DD68E53C38 | unix_socket |
+------+-------------------------------------------+-------------+
1 row in set (0.00 sec)
MariaDB [mysql]>
パスワードは設定されているようなので
# rootユーザに対するunix_socketプラグインを無効化する
MariaDB [mysql]> update user set plugin='' where user='root';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
MariaDB [mysql]>
MariaDB [mysql]> select user,password,plugin from user;
+------+-------------------------------------------+--------+
| user | password | plugin |
+------+-------------------------------------------+--------+
| root | *811AF86F5BF09B68E9A755F8FB99D2DD68E53C38 | |
+------+-------------------------------------------+--------+
1 row in set (0.00 sec)
MariaDB [mysql]>
plugin が消えている。
# 変更した更新内容を反映
MariaDB [mysql]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [mysql]> exit
Bye
pi@raspberrypi:~ $
設定したパスワードでrootにログインしてみる。
pi@raspberrypi:~ $ mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 14
Server version: 10.1.37-MariaDB-0+deb9u1 Raspbian 9.0
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
パスワードは設定されたようである。
これでMysqlのインストールは出来たようなのでWordPresのための設定をさらに進めてみることとする。しかし、データベースと言うのは気難しいようである。