在MySQL的使用过程当中,咱们可能会碰到“Access denied for user 'root'@'localhost' (using password:YES)”的问题,那么接下来咱们就来解决它。mysql
通过个人百度查询最后得出结论:出现这种错误有两种可能,一是MySQL的root用户的密码错误,二是权限不够的问题。一般解决办法是修改密码。。。sql
因为我使用的是Windows系统,因此方法也是Windows系统的修改方法:socket
一、开始 → 搜索栏里面输入cmd → 右键cmd.exe选择以管理员的身份运行(亦能够在C:\Windows\System32目录下找到这个cmd.exe,右键,以管理员身份运行)ui
二、输入net stop mysql中止MySQL服务命令行
三、输入命令行来到mysql的bin目录下,输入下列粗体命令ip
D:\MySQL\bin>mysqld --defaults-file="D:\MySQL\my.ini" --console --skip-grant-tablesrem
等一下,显示出如下结果说明MySQL启动:cmd
170215 22:26:09 [Warning] The syntax '--log' is deprecated and will be removed inMySQL 7.0. Please use '--general_log'/'--general_log_file' instead.
170215 22:26:09 [Warning] The syntax '--log_slow_queries' is deprecated and will be removed in MySQL 7.0. Please use '--slow_query_log'/'-- slow_query_log_file' instead.
170215 22:26:09 [Warning] The syntax '--log' is deprecated and will be removed in MySQL 7.0. Please use '--general_log'/'--general_log_file' instead.
170215 22:26:09 [Warning] The syntax '--log_slow_queries' is deprecated and will be removed in MySQL 7.0. Please use '--slow_query_log'/'--slow_query_log_file' instead.
170215 22:26:09 [ERROR] The update log is no longer supported by MySQL in version 5.0 and above. It is replaced by the binary log. Now starting MySQL with --log-bin='' instead.
170215 22:26:09 InnoDB: Started; log sequence number 0 324221
170215 22:26:09 [Note] mysqld: ready for connections.Version: '5.1.33-community-log' socket: '' port: 3306 MySQL Community Server (GPL)string
四、再以管理员的身份打开一个cmd.exe,输入命令行来到mysql的bin目录下,输入:mysql -uroot mysqlit
五、进入mysql以后,输入命令行修改密码:
mysql>update user set authentication_string=password('123456') where user='root';
六、刷新权限:mysql>flush privileges;
七、退出mysql:mysql> quit;
八、关闭MySQL:D:\MySQL\bin>mysqladmin shutdown(出现错误,则:mysqladmin -uroot -p shutdown 而后输入新密码)
九、至此修改密码完成,能够输入命令行:net start mysql 启动MySQL服务,mysql -uroot -p ,输入密码就能够进入mysql了。