FreeBSD 12.4 RELEASE - MySQL - mysql_secure_installation

 クラウディア
1. 概要
2. mysql_secure_installation

1. 概要

 「MySQL 5.7」からインストール後に「mysql_secure_installation」というスクリプトを実行してパスワード等を設定するのが正式な設定方法のようです。  「MySQL 8.0」で、めちゃめちゃ変わっていたらどうしようと、不安だったのですが、変わっていませんでした。

2. mysql_secure_installation

 「root」ユーザ権限で。

mysql_secure_installation
 以下、質問されます。

mysql_secure_installation: [ERROR] unknown variable 'prompt=\u@\h [\d]>\_'.
 プロンプトが変と言っているのですが無視して先へ進めます。

Securing the MySQL server deployment.

Connecting to MySQL using a blank password.

VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?

Press y|Y for Yes, any other key for No:
 パスワードのレベルを決めますかってんで yEnter

There are three levels of password validation policy:

LOW    Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary                  file

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 0
 パスワードのレベルを0、1、2のいずれかで入力します(レベルは後述)。

Please set the password for root here.
root のパスワードを変更するかってんで yEnter

New password:
 パスワードを入力します。  次の再入力を含めて、エコーバックされませんので、ご注意ください。

Re-enter new password:
 パスワードを再入力します。

Estimated strength of the password: 50
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) :
 レベル 50 だがよいかってことかな? yEnter

By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL 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? (Press y|Y for Yes, any other key for No) :
 「anonymous users」を削除しますかってんで yEnter

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? (Press y|Y for Yes, any other key for No) :
 「root」ユーザのリモートログインを禁止しますかってんで yEnter

Success.

By default, MySQL 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? (Press y|Y for Yes, any other key for No) :
 テストデーターベースを削除しますかってんで yEnter

 - 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? (Press y|Y for Yes, any other key for No) :
 権限が変更されたテーブルを再度読み込みますかってんで yEnter

Success.

All done!
 これで、初期設定は、いったん完了です。  サーバを再起動します。

service mysql-server restart
 「MySQL 5.7」では、この後、「root」パスワードの再設定が必要だったのですが、「MySQL 8.0」では、不要のようです。
earthcar(アースカー)