我是靠谱客的博主 友好流沙,最近开发中收集的这篇文章主要介绍mysql登录异常记录,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

root用户登录报错:

Access denied for user 'root'@'localhost' (using password: YES);

root用户拒绝访问。

解决一:

 cd /etc/

vim my.cnf

加入:skip-grant-tables,命令需查询,只记得大概

解决二:

#service mysql stop
#mysqld_safe --user=mysql --skip-grant-tables --skip-networking&
#mysql -u root mysql

 

创建一个新用户

CREATE USER 'mdspirit'@'localhost' IDENIFIED BY 'root';

对新用户赋予所有权限

grant all privileges on *.* to `mdspirit`@`localhost`;

报错:

ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so i


解决:

mysql> grant all privileges on *.* to `mdspirit`@`localhost`;
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so i
mysql> flush privileges;
Qu

最后

以上就是友好流沙为你收集整理的mysql登录异常记录的全部内容,希望文章能够帮你解决mysql登录异常记录所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部