欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

winxp 安装MYSQL 出现Error 1045 access denied 的解决方法

程序员文章站 2023-12-16 13:01:34
操作系统:windows-xp 系统数据库版本:mysql 5.x提示:access denied for user 'root'@'localhost' using pa...

操作系统:windows-xp 系统

数据库版本:mysql 5.x


提示:access denied for user 'root'@'localhost' using password yes/no

原来都好好的,今天开机上来提示上面的这个错误,重启 mysql 还是不可以。


注意我这里的环境是 windows-xp 系统,linux 系统下的操作没有验证过,情况不清楚。


1. 管理员登陆系统,停止 mysql 服务或者结束 mysql 进程。


2. 启动 windows 的命令行窗口(即通常的 dos 窗口:运行cmd),切换到你的 “mysql\bin” 目录下。
例如我的是 “d:\program files\mysql\mysql server 5.2\bin”,然后执行下面的粗体的命令:(注意你的 “my.ini” 位置)

microsoft windows xp [版本 5.1.2600]
(c) 版权所有 1985-2001 microsoft corp.

c:\documents and settings\administrator>cd d:\program files\mysql\mysql server 5.2\bin

c:\documents and settings\administrator>d:

d:\program files\mysql\mysql server 5.2\bin>mysqld --defaults-file="d:\program files\mysql\mysql server 5.2\my.ini" --console --skip-grant-tables


100608 9:04:12 innodb: started; log sequence number 0 46409
100608 9:04:12 [note] mysqld: ready for connections.
version: '5.2.0-falcon-alpha-community' socket: '' port: 3306 mysql community
server (gpl)
100608 9:06:57 [warning] found invalid password for user: 'root@localhost'; ign
oring user

只要出现上面信息,就说明 mysql 已经起来了。


3. 不关闭此命令行窗口,重新打开一个命令行窗口,同样切到 “mysql\bin” 目录下,然后执行下面的粗体的命令:

microsoft windows xp [版本 5.1.2600]
(c) 版权所有 1985-2001 microsoft corp.

c:\documents and settings\administrator>cd d:\program files\mysql\mysql server 5.2\bin

c:\documents and settings\administrator>d:

d:\program files\mysql\mysql server 5.2\bin>mysql -u root mysql
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 1
server version: 5.2.0-falcon-alpha-community mysql community server (gpl)

type 'help;' or '\h' for help. type '\c' to clear the buffer.

然后,就是重新设置密码了!

mysql> update user set password=password('root') where user='root';
query ok, 1 row affected (0.00 sec)
rows matched: 1 changed: 1 warnings: 0

mysql> flush privileges;
query ok, 0 rows affected (0.00 sec)

mysql> quit
bye

4. 好了到此步,可以关闭第一个 dos 窗口了(关闭服务)。打开系统服务控制窗口(控制面板--管理工具--服务),启动 mysql 服务。

5. 在剩下的第二个 dos 窗口中,用新的 root 密码连接 mysql。

d:\program files\mysql\mysql server 5.2\bin>mysql -u root -p
enter password: ****
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 1
server version: 5.2.0-falcon-alpha-community-nt mysql community server (gpl)

type 'help;' or '\h' for help. type '\c' to clear the buffer.

mysql> quit
bye


至此,系统恢复 root 用户管理权限完成,就是管理员密码的问题,奇怪,官方安装的时候不给出解决方法,貌似已存在很久了。。。

上一篇:

下一篇: