前提・実現したいこと
XAMPPを使用してLaravelとVueで現在アプリケーション開発をしています。
phpmyadminを使用したいのですが、mysqlにログインできません。
xamppのバージョン
Welcome to XAMPP for 7.4.5-0
発生している問題・エラーメッセージ
MySQL サーバにログインできません mysqli::real_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: YES)
該当のソースコード
config.inc.php
$cfg['Servers'][$i]['auth_type'] = 'cookie'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'password'; /* Server parameters */ $cfg['Servers'][$i]['host'] = '127.0.0.1'; $cfg['Servers'][$i]['connect_type'] = 'socket'; $cfg['Servers'][$i]['extension'] = 'mysqli'; $cfg['Servers'][$i]['AllowNoPassword'] = true;
試したこと
phpmyadminのログイン画面でconfig.inc.phpに定義したuserとパスワードでログインしようとしましたが
できませんでした。
ユーザー名:root パスワード:password
補足情報(FW/ツールのバージョンなど)
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。