Windows:
1.用系统管理员登陆系统。
2.停止MySQL的服务。
3.进入命令窗口,然后进入MySQL的安装目录,比如我的安装目录是c:\mysql,进入C:\mysql\bin
4.跳过权限检查启动MySQL,
[color=green]c:\mysql\bin>;mysqld-nt --skip-grant-tables[/color]
5.重新打开一个窗口,进入c:\mysql\bin目录,设置root的新密码
c:\mysql\bin>;mysqladmin -u root flush-privileges password "newpassword"
c:\mysql\bin>;mysqladmin -u root -p shutdown
将newpassword替换为你要用的root的密码,第二个命令会提示你输入新密码,重复第一个命令输入的密码。
6.停止MySQL Server,用正常模式启动Mysql
7.你可以用新的密码链接到Mysql了。
Unix&Linux:
1.用root或者运行mysqld的用户登录系统;
2.利用kill命令结束掉mysqld的进程;
3.使用--skip-grant-tables参数启动MySQL Server
[color=green]shell>mysqld_safe --skip-grant-tables &
4.为root@localhost设置新密码
[color=green]shell>update user set password=password('byheart') where user='root';
5.重新启动mysql
[color=green]shell>ps -ef |grep mysql|grep -v grep |awk '{print $2}'|xargs -t kill -9
[color=green]shell>mysqld_safe --user=mysql &
阅读(1402) | 评论(0) | 转发(0) |