1
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 1 year has passed since last update.

Can’t log into phpMyAdmin: mysqli_real_connect(): (HY000/1698): Access denied for user ‘root’@’localhost’を解決する

Last updated at Posted at 2023-02-04

初めに

久々の投稿になります。
簡単な備忘録となります。
ローカルのlaravelプロジェクトでphpmyadminを導入する際に題名のエラーメッセージが出てしまいました。

image.png

以下解決法

解決手順

sudo mysql -p -u root

①mysqlに入ります

CREATE USER 'ユーザー名'@'localhost' IDENTIFIED BY 'パスワード';

①ユーザー名とパスワードを作成します。

GRANT ALL PRIVILEGES ON *.* TO 'ユーザー名'@'localhost' WITH GRANT OPTION;

③ここで、新しいユーザーにスーパーユーザー権限を付与します

以上を行ったうえでphpmyadminから入りなおすと入れました。


laravelプロジェクトのenvファイルもちゃんと上記のユーザー名とパスワードを設定して
php artisan serveを行ってサーバーを起動した状態でやる。

1
0
1

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
1
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?