mysqlにログインし、パスワードを変更します。
mysql -u root -p
# mysqlにログイン
SET PASSWORD = password('新しいパスワード');
# '新しいパスワード'を設定
この状態では、phpMyAdminからログインできないため、config.inc.phpにそのための設定を追加します。
mdfind "config.inc.php" | grep "bin/phpMyAdmin/config.inc.php" | xargs code
# config.inc.phpの場所を検索して開く
config.inc.phpを'password'で検索すると次のような設定項目が見つかると思います。
パスワード無しを許可する行を追記してください。
$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
$cfg['Servers'][$i]['AllowNoPassword'] = true; // パスワード無しを許可
これで設定は完了です。MAMP → OpenWebSitePage → Tools → phpMyAdminで、
データベースにアクセスできます。