0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

mysqlのパスワードわからない時の対処法

Posted at

#背景
php学習中ですがphpmyadminにmysqlのパスワードがわからずアクセスできなかった。
解決するまでに苦戦してしまったので忘れないように。

#解決方法

  1. my.iniファイルを開き、[mysqld]の欄にskip-grant-tablesを追記 (C:\xampp\mysql\bin\my.ini)
  2. Mysqlを再起動
  3. コマンドプロンプトからmysqlにアクセス(mysql -u root -p)
  4. flush privileges; エラーが返ってくるが無視
  5. ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassword';でパスワードを再設定
  6. my.iniの[mysqld]欄skip-grant-tablesを削除し、mysqlを再起動
  7. mysql -u root -pで再設定したパスワードでログインできるか確認する。

config.inc.phpのパスワードも今回再設定したものに書き換えた結果、
phpmyadminにアクセスできるようになりました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?