赞
踩
1.点击“开始”->“运行”(快捷键Win+R)。
2.停止:输入 net stop mysql
3.启动:输入 net start mysql
这时候在cmd里面输入mysql -u root -p就可以不用密码登录了,出现 password:的时候直接回车
4.进入mysql数据库:mysql> use mysql;
Database changed
5.给root用户设置新密码:mysql> update user set password=password("#root") where user="root";
Query OK, 1 rows affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0
6.刷新数据库:mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
7.退出mysql:mysql> quit;
Bye
8.编辑mysql配置文件my.ini(在mysql的安装目录下,我的在D:\Program Files\MySQL\MySQL Server 5.0\my.ini),在[mysqld]这个条目下加入 skip-grant-tables 保存退出后重启mysql
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。