• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Mysql忘记密码解决办法(网络摘抄)

mysql 搞代码 7年前 (2018-06-04) 206次浏览 已收录 0个评论

mysql忘记密码解决方法(网络摘抄)

 

  1. 在windows下:   
  2. 打开命令行窗口,停止mysql服务:Net stop mysql   
  3. 到mysql的安装路径启动mysql,在bin目录下使用mysqld-nt.exe启动,在命令行窗口执行:mysqld-nt –skip-grant-tables   
  4. 然后另外打开一个命入令行窗口,执行mysql,此时无需输入密码即可进入。   
  5. >use mysql   
  6. >update user set password=password(“new_pass”) where user=“root”;   
  7. >flush privileges;   
  8. >exit   
  9. 使用任务管理器,找到mysqld-nt的进程,结束进程!   
  10. 在重新启动mysql-nt服务,就可以用新密码登录了。   
  11.   
  12. 在linux下:   
  13. 如果 MySQL 正在运行,首先杀之: killall -TERM mysqld。   
  14. 启动 MySQL :bin/safe_mysqld –skip-grant-tables &   
  15. 就可以不需要密码就进入 MySQL 了。   
  16. 然后就是   
  17. >use mysql   
  18. >update user set password=password(“new_pass”) where user=“root”;   
  19. >flush privileges;   
  20. 重新杀 MySQL ,用正常方法启动 MySQL 。 

 

附:使用Mysqladmin更改密码

新手在这个上往往容易范错误,导致不能进入MYSQL,整得非常郁闷。
我来做几个例子相信很快就明白了 。
1、原来的密码是123456
C:/>type mysql5.bat
@echo off
mysql -uroot -p123456 -P3306
正确的修改MYSQL用户密码的格式是:
我们这里用
用户:root(可以换成其他的)
密码:woshiduide
来演示新密码。 

C:/>mysqladmin -uroot -p password woshiduide
Enter password: ******
于是修改成功。
注意PASSWORD关键字后面的空格

有好多人是这样修改的:
C:/>mysqladmin -uroot -p password ‘woshiduide’
Enter password: ******

C:/>mysqladmin -uroot -p password ‘woshiduide’
Enter password: *********
Warning: single quotes were not trimmed from the password by your command
line client, as you might have expected.

而这个时候真正的密码是’woshiduide’

C:/>mysql -uroot -p’woshiduide’
Welcome to the MySQL monitor.  Commands end with ; or /g.
Your MySQL connection id is 18
Server version: 5.1.17-beta-community-nt-debug MySQL Community Server (GPL)

Type ‘help;’ or ‘/h’ for help. Type ‘/c’ to clear the buffer.

mysql>

而新手往往这样:
C:/>mysql -uroot -pwoshiduide
ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: Y
ES)
所以非常郁闷,BAIDU、GOOGLE的搜了一大堆。

我现在把密码改回去。
C:/>mysqladmin -uroot -p’woshiduide’ password 123456

2、还有就是可以直接进入MYSQL,然后修改密码。

mysql> use mysql
Database changed
mysql> update user set PASSWORD = PASSWORD(‘woshiduide’) where USER=’root’ and H
OST=’localhost’;
Query OK, 1 row affected (0.05 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> flush privileges;

mysql> exit
Bye

C:/>mysql -uroot -pwoshiduide
Welcome to the MySQL monitor.  Commands end with ; or /g.
Your MySQL connection id is 23
Server version: 5.1.17-beta-community-nt-debug MySQL Community Server (GPL)

Type ‘help;’ or ‘/h’ for help. Type ‘/c’ to clear the buffer.

mysql>
Query OK, 0 rows affected (0.02 sec)
3、还有一种就是用SET PASSWORD 命令修改:

C:/>mysql5.bat
Enter password: ******
Welcome to the MySQL monitor.  Commands end with ; or /g.
Your MySQL connection id is 8
Server version: 5.1.17-beta-community-nt-debug-log MySQL Community Server (GPL)

Type ‘help;’ or ‘/h’ for help. Type ‘/c’ to clear the buffer.

mysql> set password for root@’localhost’ = password(‘woshiduide’);
Query OK, 0 rows affected (0.02 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.09 sec)

mysql> exit
Bye
4、GRANT 也可以,不过这里不介绍。因为涉及到权限的问题。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Mysql忘记密码解决办法(网络摘抄)

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址