当前位置:   article > 正文

解决MySQL出现Access denied for user ‘root‘@‘localhost_mysql grant all access denied

mysql grant all access denied
情况一:命令行可以登录,应用程序报:Access denied for user ‘root’@‘localhost’
原因:没有对应的用户或者plugin模式不正确
mysql> SELECT `user`,`host`,`authentication_string`,`plugin` FROM mysql.user;
  • 1

在这里插入图片描述

#  创建远程连接用户
mysql> CREATE USER 'root'@'%' IDENTIFIED BY '123456';
mysql> GRANT ALL ON maindataplus.* TO 'root'@'%';
mysql> flush privileges;
mysql> quit;


# 修改plugin模式
mysql> UPDATE mysql.user SET `plugin`='mysql_native_password' WHERE `user`='root';
mysql> flush privileges;
mysql> quit;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
情况二:Access denied for user ‘root’@‘localhost’ (using password: YES)
原因:密码错误(忘记密码)
解决步骤:
# 停止MySQL服务
windows系统:net stop mysql
Linux系统:service mysql stop

# 启动MySQL服务,加上--skip-grant-tables
  • 1
  • 2
  • 3
  • 4
  • 5

以不需要登录密码的模式启动MySQL服务

Windows系统:
在这里插入图片描述

mysqld --skip-grant-tables
  • 1

Linux系统:

/usr/sbin/mysqld --skip-grant-tables
  • 1

新开一个命令行窗口,登录

mysql -uroot -p
# 回车,回车
# 修改root密码,方式一

mysql> use mysql;
mysql> update user set password=password(“123456”) where user=”root”;
mysql> flush privileges;

# 方式二(在mysql 5.7.9以后废弃了password字段和password()函数)
# 远程用户:'root'@'%',本地用户:'root'@'localhost',password换成你的密码
mysql> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'password'; 
mysql> flush privileges;
mysql>quit;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

重启mysql服务

windows系统:net restart mysql
Linux系统:service mysql restart
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/944330
推荐阅读
相关标签
  

闽ICP备14008679号