和6年能登半島地震により亡くなられた方々のご冥福をお祈りするとともに、被害に遭われた皆さまに対し、心よりお見舞い申し上げます。一日も早く被災地の安全が確保され、復旧が進む事を心よりお祈り申し上げます。

MySQL ERROR 1045 (28000)

MySQL5.7は、初回起動時にランダムパスワードが自動生成される!

・ORACLE VirtualBox バージョン 6.1.10 r138449 (Qt5.6.2)
・CentOS Linux release 7.8.2003 (Core)
・Apache/2.4.6
・PHP 5.4.16
・MySQL5.7.31

CMS検証用にMariaDBではなく、敢てMySQLをyumでインストールしてphpMyAdminも入れた。

[root@localhost html]# mysql --version
mysql  Ver 14.14 Distrib 5.7.31, for Linux (x86_64) using  EditLine wrapper

MySQLのrootパスワードを設定した記憶がない。パスワード入れないとエラーがでる。

どういうこと?

[root@localhost html]# mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

以前のバージョンはNoパスワードで入れた記憶が・・・。

ググってみた。

MySQL初回起動時にランダムパスワードが自動生成され、そのパスワードは、/var/log/mysqld.logに記録されるとのこと。

[root@localhost html]# cat /var/log/mysqld.log | grep 'password is generated'
2020-07-12T23:19:20.585640Z 1 [Note] A temporary password is generated for root@localhost: 5Le=G5nJNda?

おぉ!!root@localhost: 5Le=G5nJNda? 初期パスワードはこれね。

[root@localhost html]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.7.31

Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql>

MySQLに入れたぁ!初期パスワードをhogehogeに変更しようとしたら・・また、エラーで怒られる。

mysql> update mysql.user set password=password('hogehoge') where user = 'root';
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

パスワードポリシーは、8文字以上、英数大文字小文字と記号が必要らしい。

パスワードをHoge12&%hogeで変更できました(^^)

mysql> SET PASSWORD FOR root@localhost=password('Hoge12&%hoge');
Query OK, 0 rows affected, 1 warning (0.00 sec)

phpMyAdminにもログイン完了!