修改xampp的mysql密码

来源:互联网 发布:淘宝钻展怎么开通 编辑:程序博客网 时间:2024/06/11 22:05

以下技术应用于最优质的水果的鲜果篮

With the “XAMPP Shell” (command prompt) you can also reset the password. Open the shell and execute this command
mysqladmin.exe -u root password newpassword

 

Of course, your password should not be “newpassword”, too. In the next step you must adjust the phpMyAdmin configuration for this new password. In the file “D:\xampp\phpMyAdmin\config.inc.php” change the lines:

$cfg['Servers'][$i]['user']     = 'root';
$cfg['Servers'][$i]['password'] = '';

To:

$cfg['Servers'][$i]['user']     = 'root';
$cfg['Servers'][$i]['password'] ='newpassword';
0 0
原创粉丝点击