myadminにログインできなくなったのは下の画像の【ユーザーアカウント】にてパスワードを変更してからです。
なのでMAMP/bin/phpMyAdmin5/config.inc.phpの設定をこのように設定しました。
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address $cfg['Servers'][$i]['port'] = '8889'; // MySQL port - leave blank for default port $cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket $cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket') $cfg['Servers'][$i]['extension'] = 'mysql'; // The php MySQL extension to use ('mysql' or 'mysqli') $cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection // (requires PHP >= 4.3.0) $cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)? $cfg['Servers'][$i]['user'] = 'root'; // MySQL user $cfg['Servers'][$i]['password'] = 'ここにパスワードを入力した'; // MySQL password (only needed
他にも試した事としてこのように設定したりもしました。
これでもうまくいきませんでした。
/* User used to manipulate with storage */ $cfg['Servers'][$i]['controlhost'] = 'localhost'; $cfg['Servers'][$i]['controlport'] = '8889'; $cfg['Servers'][$i]['controluser'] = 'root'; $cfg['Servers'][$i]['controlpass'] = 'ここにパスワードを入力した';
ターミナルで実行するとMysqlにはログインできたように思います。
mysql -u root -p
Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 22 Server version: 8.0.23 MySQL Community Server - GPL Copyright (c) 2000, 2021, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MAMPを開いて下の画面が出るのですが 【http://localhost:8888/phpMyAdmin5/】
なぜlocalhostが8888なのかがわかりません。
MAMP/bin/phpMyAdmin5/config.inc.php内ではlocalhost='8889'になっているので。。。
ちなみに8888に入力してもうまく動きません。
下の画像のauth_typeをconfigからcookieに変えてユーザー名とパスワードを入力したりもしました。
$cfg['Servers'][$i]['auth_type'] = 'config';
調べてできることはしたのですが行き詰ってしまいました。
どなたかご教授いただけますと幸いです。
よろしくお願い致します。
回答2件
あなたの回答
tips
プレビュー