I forgot mysql root password. How can I get it again? I am trying to use mysql -u root
command but I am getting this error ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
how can I solve this problem?
I forgot mysql root password. How can I get it again? I am trying to use mysql -u root
command but I am getting this error ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
how can I solve this problem?
-p
オプションで試してください。次に、パスワードの入力を求められます。あなたの場合、パスワードなしではユーザー root でアクセスできないと言っています。
mysql -u root -h localhost -p
パスワードを本当に忘れてしまった場合は、ここで同じパスワードをリセットする方法をご覧ください。
root パスワードのリセット方法(5.7 バージョン用)