mysql 密码不对
Posted 沈晓桐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 密码不对相关的知识,希望对你有一定的参考价值。
ERROR 1045 (28000): Access denied for user \'ODBC\'@\'localhost\' (using password: NO)
ERROR 1045 (28000): Access denied for user \'ODBC\'@\'localhost\' (using password: YES)
一,修改my.ini.重启mysql服务(记得重启哦.).
在mysqld 下面加一行 skip-grant-tables
或者 在mysql\\bin 目录下CMD skip -grant -table
二.空密码登录,选择数据库
mysql -u root -p; #空密码登录
show databases; #查看数据库
use db_name; #选择数据库
三.更改密码
update user set password =password("*********") where user="root"; #更改密码
flush privileges; #刷新数据库
mysqld --defaults-file=my.ini --initialize-insecure
update user set authentication_string="123456";
exit;
四.还原my.ini
http://www.jb51.net/article/39454.htm
以上是关于mysql 密码不对的主要内容,如果未能解决你的问题,请参考以下文章