[MySQL] xampp 修改MySQL 使用者密碼

如果要讓USER需要密碼才能進入phpMyAdmin
就要進行一些設定:

1. ﹝MySQL﹞ → ﹝Admin﹞


2. 將帳號任意(%)的刪除

3.編輯root權限

4.﹝使用者帳號﹞→﹝修改密碼﹞→﹝輸入密碼﹞→﹝執行﹞


5.修改config.inc.php

config.inc.php路徑:C:\xampp\phpMyAdmin\

原本:

$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';


修改:
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '你的密碼';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
$cfg['Lang'] = '';

$cfg['Servers'][$i]['password'] = '你的密碼';

['auth_type']: 'config' 改成 'cookie'


7.重新啟動Apache & MySQL 後,就完成了哦!

留言