免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1294 | 回复: 0
打印 上一主题 下一主题

用MYSQLADMIN改用户密码 [复制链接]

论坛徽章:
1
白银圣斗士
日期:2015-11-23 08:33:04
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-10-17 08:36 |只看该作者 |倒序浏览

新手在这个上往往容易范错误,导致不能进入MYSQL,整得非常郁闷。
我来做几个例子相信很快就明白了 。
1、原来的密码是123456
C:>type mysql5.bat@echo offmysql -uroot -p123456 -P3306
正确的修改MYSQL用户密码的格式是:
我们这里用
用户:root(可以换成其他的)
密码:woshiduide
来演示新密码。
C:>mysqladmin -uroot -p password woshiduideEnter 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 commandline 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 18Server 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: YES)
所以非常郁闷,BAIDU、GOOGLE的搜了一大堆。
我现在把密码改回去。
C:>mysqladmin -uroot -p'woshiduide' password 123456
2、还有就是可以直接进入MYSQL,然后修改密码。
mysql> use mysqlDatabase changedmysql> update user set PASSWORD = PASSWORD('woshiduide') where USER='root' and HOST='localhost';Query OK, 1 row affected (0.05 sec)Rows matched: 1  Changed: 1  Warnings: 0mysql> flush privileges;mysql> exitBye
C:>mysql -uroot -pwoshiduideWelcome to the MySQL monitor.  Commands end with ; or g.Your MySQL connection id is 23Server 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.batEnter password: ******Welcome to the MySQL monitor.  Commands end with ; or g.Your MySQL connection id is 8Server 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> exitBye
4、GRANT 也可以,不过这里不介绍。因为涉及到权限的问题。


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/9817/showart_402089.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP