赞
踩
不记得密码的情况下进行修改密码
方法一:打开计算机的服务,找到MySQL,点击停止此服务
方法二:以管理员身份运行命令net stop mysql,一定要管理员,否则执行命令会提示“发生系统错误 5。拒绝访问。”
cmd打开命令窗口输入mysqld --skip-grant-tables后回车
启动MySQL服务时不启动grant-tables授权表,跳过数据库权限验证
保留上面那个窗口,再cmd打开新命令窗口输入mysql后回车
执行命令:use mysql
执行命令:update user set authentication_string=password(“123”) where user=“root”;
新版本要用authentication_string,用password会报错
update user set password=password(“123”) where user=“root”;
执行命令:flush privileges;
执行命令:exit;
跟第一步的停止服务一样的操作
如果记得旧密码想修改密码的情况,可以按照下面步骤操作
执行命令:mysql -uroot -p
执行命令:use mysql
执行命令:update user set authentication_string=password(‘521’) where user=‘root’ and host=‘localhost’;
执行命令:flush privileges;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。