【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]

IDE、開発ツール開発全般

コメントは停止中です。