【XAMPP】でMYSQL ユーザーアカウントのパスワード設定方法
XAMPPのphpmyadminでパスワード設定した場合、
下記の設定ファイルに記述を変更する必要があります。
C:\xampp\phpMyAdmin\config.inc.php
$cfg[‘Servers’][$i][‘password’] = ‘設定したパスワードをいれる‘;
[php]
/* Authentication type and info */
$cfg[‘Servers’][$i][‘auth_type’] = ‘config’;
$cfg[‘Servers’][$i][‘user’] = ‘root’;
$cfg[‘Servers’][$i][‘password’] = ”;
$cfg[‘Servers’][$i][‘AllowNoPassword’] = true;
[/php]
コメントは停止中です。