2020年04月09日
Tweet
今までは log ファイルに初期設定されたパスワードが記載されていたように思います。今回SCL経由でのインストールだったためかログには出てないような感じでした。
その代わり以下のログが。
# less /var/opt/rh/rh-mysql57/log/mysql/mysqld.log
root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
デフォルトではパスワードは空のようです。
# mysql -u root -p
Enterを押す
mysql> use mysql
mysql> UPDATE user SET authentication_string=password('NEW-PASSWROD') WHERE user='root';
mysql> flush privileges;
これでパスワードが変更されました。
その代わり以下のログが。
# less /var/opt/rh/rh-mysql57/log/mysql/mysqld.log
root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
デフォルトではパスワードは空のようです。
# mysql -u root -p
Enterを押す
mysql> use mysql
mysql> UPDATE user SET authentication_string=password('NEW-PASSWROD') WHERE user='root';
mysql> flush privileges;
これでパスワードが変更されました。
stock_value at 13:49│Comments(0)│技術