龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 数据库类 > MySQL 技术 >

MySQL修改用户密码,新手必看

时间:2011-04-12 23:18来源:未知 作者:admin 点击:
分享到:
我们大家都知道 MySQL 修改用户密码这一问题一直是困扰新手的一个恶魔,在此问题的解决上新手经常会上范错误,而导致最终不能进入MySQL数据库,所以以下就是几个相关例子的介绍,

我们大家都知道MySQL修改用户密码这一问题一直是困扰新手的一个恶魔,在此问题的解决上新手经常会上范错误,而导致最终不能进入MySQL数据库,所以以下就是几个相关例子的介绍,望你能有所收获。

1、原来的密码是123456

  1. C:>type MySQL5.bat  
  2. @echo off  
  3. MySQL -uroot -p123456 -P3306 

正确的修改MySQL用户密码的格式是:

我们这里用

用户:root(可以换成其他的)

密码:woshiduide

来演示新密码。

  1. C:>MySQLadmin -uroot -p password woshiduide  
  2. Enter password: ****** 

于是修改成功。注意PASSWORD关键字后面的空格有好多人是这样修改的:

  1. C:>MySQLadmin -uroot -p password ‘woshiduide’  
  2. Enter password: ******  
  3. C:>MySQLadmin -uroot -p password ‘woshiduide’  
  4. Enter password: *********  
  5. Warning: single quotes were not trimmed from the password by your command  
  6. line client, as you might have expected.  
  7.  

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

  1. C:>MySQL -uroot -p’woshiduide’  
  2. Welcome to the MySQL monitor. Commands end with ; or g.  
  3. Your MySQL connection id is 18  
  4. Server version: 5.1.17-beta-community-nt-debug MySQL Community Server (GPL)  
  5. Type ‘help;’ or ‘h’ for help. Type ‘c’ to clear the buffer.  
  6. MySQL> 
  7.  

MySQL修改用户密码实际操作中而新手往往这样:

  1. C:>MySQL -uroot -pwoshiduide  
  2. ERROR 1045 (28000): Access denied for user ‘root’@'localhost’ (using password: Y  
  3. ES) 

所以非常郁闷,BAIDU、GOOGLE的搜了一大堆。

我现在把密码改回去。

  1. C:>MySQLadmin -uroot -p’woshiduide’ password 123456 

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

  1. MySQL> use MySQL  
  2. Database changed  
  3. MySQL> update user set PASSWORDPASSWORD = PASSWORD(‘woshiduide’) where USER=’root’ and H  
  4. OST=’localhost’;  
  5. Query OK, 1 row affected (0.05 sec)  
  6. Rows matched: 1 Changed: 1 Warnings: 0  
  7. MySQL> flush privileges;  
  8. MySQL> exit  
  9. Bye  
  10. C:>MySQL -uroot -pwoshiduide  
  11. Welcome to the MySQL monitor. Commands end with ; or g.  
  12. Your MySQL connection id is 23  
  13. Server version: 5.1.17-beta-community-nt-debug MySQL Community Server (GPL)  
  14. Type ‘help;’ or ‘h’ for help. Type ‘c’ to clear the buffer.  
  15. MySQL> 
  16. Query OK, 0 rows affected (0.02 sec)  

3、还有一种就是用SET PASSWORD 命令修改:

  1. C:>MySQL5.bat  
  2. Enter password: ******  
  3. Welcome to the MySQL monitor. Commands end with ; or g.  
  4. Your MySQL connection id is 8  
  5. Server version: 5.1.17-beta-community-nt-debug-log MySQL Community Server (GPL)  
  6. Type ‘help;’ or ‘h’ for help. Type ‘c’ to clear the buffer.  
  7. MySQL> set password for root@’localhost’ = password(‘woshiduide’);  
  8. Query OK, 0 rows affected (0.02 sec)  
  9. MySQL> flush privileges;  
  10. Query OK, 0 rows affected (0.09 sec)  
  11. MySQL> exit  
  12. Bye  

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

以上的相关内容就是对MySQL修改用户密码的介绍,望你能有所收获。
 


收藏文章
表情删除后不可恢复,是否删除
取消
确定
图片正在上传,请稍后...
评论内容为空!
还没有评论,快来抢沙发吧!

热评话题

按钮 内容不能为空!
立刻说两句吧! 查看0条评论
精彩图集

赞助商链接