暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

登录mysql时报错ERROR 1524

原创 Leo 2023-07-11
1545

问题描述:登录mysql时报错ERROR 1524,如下所示:
数据库:mysql 5.7.21
1、异常重现
[root@leo-mysql5721 ~]# mysql -uroot -p
Enter password:
ERROR 1524 (HY000): Plugin 'auth_socket' is not loaded

2、解决方案
mysql> select user,plugin from user;
+---------------+-----------------------+
| user | plugin |
+---------------+-----------------------+
| root | auth_socket |
| mysql.session | mysql_native_password |
| mysql.sys | mysql_native_password |
| erika | mysql_native_password |
| jeffrey | mysql_native_password |
+---------------+-----------------------+
5 rows in set (0.00 sec)

mysql> update user set plugin='mysql_native_password' 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.01 sec)

mysql> select user,plugin from user;
+---------------+-----------------------+
| user | plugin |
+---------------+-----------------------+
| root | mysql_native_password |
| mysql.session | mysql_native_password |
| mysql.sys | mysql_native_password |
| erika | mysql_native_password |
| jeffrey | mysql_native_password |
+---------------+-----------------------+
5 rows in set (0.00 sec)

[root@leo-mysql5721 ~]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 5.7.21 MySQL Community Server (GPL)

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

说明:如上所示,修改plugin后成功登录数据库.

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论