码迷,mamicode.com
首页 > 数据库 > 详细

xampp中修改mysql默认空密码

时间:2019-01-10 10:51:08      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:直接   mysql   password   .com   pass   存在   user   mysq   通过   

  打卡记录:

  1. mysql用户的相关信息是保存在mysql数据库的user表中的,并且该表的密码字段(Password)是通过PASSWORD方法加密存储的,所以不能直接修改成123456。

  技术分享图片

 

  2. 修改phpmyadmin的登录密码。

  找到phpMyadmin的配置文件,即phpMyAdmin目录下的config.inc.php,找到如下代码并修改:

  /* Authentication type and info */
  $cfg[‘Servers‘][$i][‘auth_type‘] = ‘config‘;
  $cfg[‘Servers‘][$i][‘user‘] = ‘root‘;
  $cfg[‘Servers‘][$i][‘password‘] = ‘123456‘;
  $cfg[‘Servers‘][$i][‘extension‘] = ‘mysqli‘;
  $cfg[‘Servers‘][$i][‘AllowNoPassword‘] = true;

 

  记录完毕。

xampp中修改mysql默认空密码

标签:直接   mysql   password   .com   pass   存在   user   mysq   通过   

原文地址:https://www.cnblogs.com/iverson-3/p/10247926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!