#解決したいこと
phpMyAdminに接続したい
#エラー
Welcome to phpMyAdmin Error MySQL said:Documentation Cannot connect: invalid settings. mysqli_real_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: YES) phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.
mysql.error.log 2020-03-16T10:58:11.191282Z 0 [Note] /Applications/MAMP/Library/bin/mysqld: ready for connections. Version: '5.7.26' socket: '/Applications/MAMP/tmp/mysql/mysql.sock' port: 0 MySQL Community Server (GPL) 2020-03-16T10:58:11.233942Z 2 [Note] Access denied for user 'root'@'localhost' (using password: NO) 2020-03-16T10:58:11.244738Z 3 [Note] Access denied for user 'root'@'localhost' (using password: NO) 2020-03-16T10:58:11.255780Z 4 [Note] Access denied for user 'root'@'localhost' (using password: NO) 2020-03-16T10:58:11.297888Z 6 [Note] Access denied for user 'root'@'localhost' (using password: NO)
/etc/phpMyAdmin/config.inc.php の現在の状況
$cfg['Servers'][$i]['host'] = '127.0.0.1'; $cfg['Servers'][$i]['port'] = '3306'; $cfg['Servers'][$i]['socket'] = '/Applications/MAMP/tmp/mysql/mysql.sock'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['extension'] = 'mysql'; $cfg['Servers'][$i]['compress'] = FALSE; $cfg['Servers'][$i]['controluser'] = 'root'; $cfg['Servers'][$i]['controlpass'] = 'root'; $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'root'; $cfg['Servers'][$i]['only_db'] = ''; $cfg['Servers'][$i]['verbose'] = '';
背景に
mysqlが起動しなくなり、すべて初期化しています。
以下の手順で
リンク内容
よろしくお願いします。
コマンドでMySQLに接続は出来るのでしょうか。
というかそもそもMySQLは起動しているのでしょうか。
URLは https://teratail.com/help/question-tips#questionTips3-7 の [リンク] で [リンク先のタイトル](http...) に修正してください。
エラーメッセージはキャプチャではなく、表示された文字をそのまま質問にコピペしてください。https://teratail.com/help/question-tips#questionTips3-4-2
マルチポストでした。https://teratail.com/questions/247431
質問者はこの質問は削除依頼して https://teratail.com/help#delete-question
元の質問を修正してください。
Orlofsky様
修正依頼指摘ありがとうございます。
3個目のマルチポストの件ですが、エラー内容全くの別件の為、排除依頼はしません。
m.ts10806 様
mysqlは接続・起動はできています。
ログインユーザー指定が違うだけの同じエラー
両方とも正しく認証情報を設定してください以外ない。
まさかの、フレームワークの中で定数による接続を試していてフレームワーク側の接続で落ちてるとか何やってるんだろう
あなたの回答
tips
プレビュー