Posted on 2010-08-18 22:56
J2EE Home工作室 阅读(4945)
评论(0) 编辑 收藏 所属分类:
MySQL
这个MySQL有点怪啊,突然间用原账号就登陆不上了(具体原因不详,有知道的告诉我);所以决定修改下原密码。
1.停掉MySQL,然后用无权限验证的方式重新启动MySQL 命令:
Linux下,运行 /usr/local/mysql/bin/mysqld_safe --skip-grant-tables &
Windows下,在命令行下运行 X:/MySQL/bin/mysqld --skip-grant-tables
2.在命令行下用,mysql -u -root登陆
3.修改下密码吧,一位博主(
http://blog.chinaunix.net/u/29134/showart_373855.html)写的方法比较全,我就不罗嗦了。三种方法任何一个都行
新手在这个上往往容易范错误,导致不能进入MYSQL,整得非常郁闷。
我来做几个例子相信很快就明白了 。
1、原来的密码是123456C:\>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 -pwoshiduideERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)所以非常郁闷,BAIDU、GOOGLE的搜了一大堆。
我现在把密码改回去。
C:\>mysqladmin -uroot -p'woshiduide' password 1234562、还有就是可以直接进入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> exitByeC:\>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.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 也可以,不过这里不介绍。因为涉及到权限的问题。