修改mysql密码 [数据库教程]
mysql密码修改">mysql密码修改
使用xampp的小伙伴,修改密码后肯定不能登录localhost了,所以要打开config.inc.php
这个文件并找到如下部分:
/* Authentication type and info */$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‘] = ‘‘;
修改password=‘‘
里的值
如果想每次登录localhost自行输入用户密码,可以修改config
为cookie
一般遇到打不开某个服务大多数是端口冲突修改下即可
修改mysql密码
以上是 修改mysql密码 [数据库教程] 的全部内容, 来源链接: utcz.com/z/534683.html