MySQL5.6はroot初期パスワードが設定されている

MySQL5.6をインストールしていたのですが、5.6からはrootの初期パスワードが設定されていました。
インストールすると

#cat /root/.mysql_secret
# The random password set for the root user at Tue Oct 15 13:45:21 2013 (local time): ランダム文字列

に初期パスワードが記載されたファイルが作成されています。

またmy.cnfは

/usr/my.cnf

に変更されていました。

rootのパスワードを変更せずにクエリを打ち込むんだところ下記のようになりました。

# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.6.13

Copyright (c) 2000, 2013, 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> show databases;
ERROR 1820 (HY000): You must SET PASSWORD before executing this statement
mysql>

セキュリティ強化がされてますね。

この記事が気に入ったら
フォローしてね!

よかったらシェアしてね!
  • URLをコピーしました!
  • URLをコピーしました!
目次