当前位置:首页 > Mysql教程 > 列表

mysql启动提示 access denied for user root@localhost(using password:YES)

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-12 12:17:09 浏览: 评论:0 

本文章来介绍关于mysql启动提示 access denied for user root@localhost(using password:YES) 解决办法总结,有需要的朋友可参考本文章.

关键是看:Access denied for user 'root'@'localhost' (using password: YES)',从错误中可以看出你的权限是对localhost的访问没有放开.

于是你可以使用如下命令来放开权限.

解决办法

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

2.进入命令行,来到mysql的安装目录.假设安装目录为 d:mysql , CMD进入命令行;

3.运行 D:Program FilesMySQLMySQL Server 5.5binmysqld-nt --skip-grant-tables启动mysql,关闭权限的检查;

4.运行 D:Program FilesMySQLMySQL Server 5.5binmysqladmin -u root flush-privileges password "newpassword" 重设root密码;

5.重新启动mysql服务;

命令方式解决

方法一,代码如下:

  1. # /data/mysql/bin/mysqladmin -u -p <首先要停止你之前的启动的mysql.如果停止的时候.也出现1045的错误的话那只有kill掉mysql的pid> 
  2. --phpfensi.com 
  3. # mysqld_safe --user=mysql --skip-grant-tables --skip-networking & 
  4. # mysql -u root mysql 
  5. mysql> UPDATE user SET Password=PASSWORD('newpassword'where USER='root'
  6. mysql> FLUSH PRIVILEGES
  7. mysql> quit 
  8. # /etc/init.d/mysql restart 
  9. # mysql -uroot -p 
  10. Enter password: <输入新设的密码newpassword> 
  11. mysql> 

解决方法二

首先计入到mysql的客户端命令行,然后代码如下:

  1. grant all privileges on *.* to 'root'@'localhost' identified by '你的密码' with grant option
  2. flush privileges

执行完这两条命令之后就可以了.

Tags: root@localhost(using password:YES)

分享到: