mysql有时候忘记密码了怎么办?我给出案例和说明!一下就解决了!
创新互联公司-专业网站定制、快速模板网站建设、高性价比京山网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式京山网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖京山地区。费用合理售后完善,十余年实体公司更值得信赖。
Windows下的实际操作如下
1.关闭正在运行的MySQL。
2.打开DOS窗口,转到mysql\bin目录。
3.输入mysqld --skip-grant-tables回车。如果没有出现提示信息,那就对了。
4.再开一个DOS窗口(因为刚才那个DOS窗口已经不能动了),转到mysql\bin目录。
5.输入mysql回车,如果成功,将出现MySQL提示符
6. 连接权限数据库use mysql; (是本来就有的提示符,别忘了最后的分号)
6.改密码: update user set password=password("520") where user="root"; (别忘了最后的分号)
7.刷新权限(必须的步骤)flush privileges;
8.退出 \q
9.注销系统,再进入,开MySQL,使用用户名root和刚才设置的新密码123456登陆。
第一步
C:\Documents and Settings\Administratorcd D:\web\\Mysql\MySQL Se
rver5.5\bin
C:\Documents and Settings\Administratord:
D:\web\\Mysql\MySQL Server5.5\binmysqld --skip-grant-tables
第二步
Microsoft Windows [版本 5.2.3790]
(C) 版权所有 1985-2003 Microsoft Corp.
C:\Documents and Settings\Administratorcd D:\web\\Mysql\MySQL Se
rver5.5\bin
C:\Documents and Settings\Administratord:
D:\web\\Mysql\MySQL Server5.5\binmysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.10 MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql use mysql;
Database changed
mysql update user set password=password("520") where user="root";
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql \q
Bye
D:\web\\Mysql\MySQL Server5.5\bin
在,管理工具中的服务里面,把mysql先停止了,然后在开始运行中输入c:\\mysql\bin\mysqld-nt.exe
-remove
mysql就会被注销掉了,然后删除文件就可以了
一、windows下修改MySQL密码的方法
如果在Windows下忘记了MySQL的密码,可以这样做:
1.关闭正在运行的MySQL服务:net stop mysql或 在windows 任务管理器中结束 mysqld.exe 进程或在 管理工具里面的服务找到 mysql服务 ,将其停止;
复制代码代码如下:
C:\Users\Administratornet stop mysql
MySQL 服务正在停止.
MySQL 服务已成功停止。
2.打开命令行,转到mysql的bin目录下;
复制代码代码如下:
C:\Users\Administratorcd C:\Program Files\MySQL\MySQL Server 5.5\bin
C:\Program Files\MySQL\MySQL Server 5.5\bin
3.输入:mysqld -nt --skip-grant-tables
然后回车,如果没有错误信息,就行了;
注:skip-grant-tables参数用了之后,就可以跳过登录校验;
复制代码代码如下:
C:\Program Files\MySQL\MySQL Server 5.5\binmysqld -nt --skip-grant-tables
140317 13:23:11 [Warning] option 'new': boolean value 't' wasn't recognized. Set
to OFF.
4.再打开一个命令行(因为刚才那个DOS窗口已经不能动了),同样转到mysql的bin目录下;
5.直接输入 mysql 并回车,如果成功,将出现MySQL提示符
复制代码代码如下:
C:\Users\Administratorcd C:\Program Files\MySQL\MySQL Server 5.5\bin
C:\Program Files\MySQL\MySQL Server 5.5\binmysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.35 MySQL Community Server (GPL)
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql
6.切换到mysql表
复制代码代码如下:
mysqlUSE mysql;
7.可以修改密码了:
复制代码代码如下:
UPDATE user SET password=PASSWORD("123456") WHERE user="root";
8.刷新权限,不要忘记了:
复制代码代码如下:
mysqlFLUSH PRIVILEGES;
9.退出:(退出的方法很多 有quit、exit、ctrl+c、\q 等等);
10.注销或重启计算机,然后打开MySQL服务,使用用户名root和设置的新密码就可以登录了。
1. 先在服务里停止MySQL
2. 在注册表(regedit.exe)“我的电脑\HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\MySQL”项全部删掉
3. 重启(注销不行)
4. 把程序文件夹删掉
方法一:1、打开my.ini文件,找到default-storage-engine=InnoDB这一行,把它改成default-storage-engine=MyISAM。2、删除在MySQL安装目录下的Data目录中的ib_logfile0和ib_logfile13。找到在配置MySQL服务器时指定的InfoDB目录删除掉ibdata1根据my.ini文件中:#***INNODBSpecificoptions***innodb_data_home_dir="D:/"。4。重新启动MySQL的Service方法二:重装mysql时,一直提示“无法启动MYSQL服务,错误1067进程意外终止重启,修复注册表都没什么用,网上查了,改什么basedir,也没用我用的是mysql5.8,找来找去,想起之前装了wampserver,pc_webserver等集成环境,此些软件会把my.ini,php.ini写入C:WINDOWS目录下,并设为只读解决方法:把windows目录下,my.ini文件删除,重装mysql,服务启动成功