ERROR 1698 (28000): Access denied for user #39;root#39;@#39;localhost#39;(错误 1698 (28000):拒绝用户“root@“localhost的访问)
问题描述
我正在设置一个新服务器,但一直遇到这个问题.
I'm setting up a new server and keep running into this problem.
当我尝试以 root 用户登录 MySQL 数据库时,出现错误:
When I try to log into the MySQL database with the root user, I get the error:
ERROR 1698 (28000): 用户 'root'@'localhost' 的访问被拒绝
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
我是否通过终端 (SSH)、phpMyAdmin 或MySQL 客户端,例如 Navicat.他们都失败了.
It doesn't matter if I connect through the terminal (SSH), through phpMyAdmin or a MySQL client, e.g., Navicat. They all fail.
我查看了 mysql.user 表并得到以下信息:
I looked in the mysql.user table and get the following:
+------------------+-------------------+
| user | host |
+------------------+-------------------+
| root | % |
| root | 127.0.0.1 |
| amavisd | localhost |
| debian-sys-maint | localhost |
| iredadmin | localhost |
| iredapd | localhost |
| mysql.sys | localhost |
| phpmyadmin | localhost |
| root | localhost |
| roundcube | localhost |
| vmail | localhost |
| vmailadmin | localhost |
| amavisd | test4.folkmann.it |
| iredadmin | test4.folkmann.it |
| iredapd | test4.folkmann.it |
| roundcube | test4.folkmann.it |
| vmail | test4.folkmann.it |
| vmailadmin | test4.folkmann.it |
+------------------+-------------------+
如您所见,用户 root 应该具有访问权限.
As you can see, user root should have access.
服务器非常简单,因为我已经尝试解决这个问题有一段时间了.
The Server is quite simple, as I have tried to troubleshoot this for a while now.
它正在运行 Ubuntu 16.04.1 LTS (Xenial Xerus) 使用 Apache、MySQL 和 PHP,以便它可以托管网站,以及 iRedMail 0.9.5-1,以便它可以托管邮件.
It's running Ubuntu 16.04.1 LTS (Xenial Xerus) with Apache, MySQL and PHP, so that it can host websites, and iRedMail 0.9.5-1, so that it can host mail.
在我安装 iRedMail 之前登录 MySQL 数据库工作正常.我也试过只安装 iRedMail,但是 root 也不起作用.
Log into the MySQL database works fine before I installed iRedMail. I also tried just installing iRedMail, but then root also doesn't work.
如何修复我的 MySQL 登录问题,或者如何通过现有的 MySQL 安装安装 iRedMail?是的,我尝试了安装技巧,但我不能在配置文件中找到这些变量.
How can I fix my MySQL login problem or how can I install iRedMail over an existing MySQL install? And yes, I tried the Installation Tips and I can't find those variables in the configuration files.
推荐答案
某些系统如 Ubuntu、MySQL 正在使用 UNIX auth_socket 插件 默认.
Some systems like Ubuntu, MySQL is using the UNIX auth_socket plugin by default.
基本上这意味着:db_users 使用它,将被验证";通过系统用户凭据.您可以通过执行以下操作来查看您的 root
用户是否是这样设置的:
Basically it means that: db_users using it, will be "authenticated" by the system user credentials. You can see if your root
user is set up like this by doing the following:
sudo mysql -u root # I had to use "sudo" since it was a new installation
mysql> USE mysql;
mysql> SELECT User, Host, plugin FROM mysql.user;
+------------------+-----------------------+
| User | plugin |
+------------------+-----------------------+
| root | auth_socket |
| mysql.sys | mysql_native_password |
| debian-sys-maint | mysql_native_password |
+------------------+-----------------------+
正如您在查询中看到的,root
用户正在使用 auth_socket
插件.
As you can see in the query, the root
user is using the auth_socket
plugin.
有两种方法可以解决这个问题:
There are two ways to solve this:
- 您可以设置root用户使用
mysql_native_password
插件 - 你可以创建一个新的
db_user
system_user
(推荐)
- You can set the root user to use the
mysql_native_password
plugin - You can create a new
db_user
with yousystem_user
(recommended)
选项 1:
sudo mysql -u root # I had to use "sudo" since it was new installation
mysql> USE mysql;
mysql> UPDATE user SET plugin='mysql_native_password' WHERE User='root';
mysql> FLUSH PRIVILEGES;
mysql> exit;
sudo service mysql restart
选项 2:(将 YOUR_SYSTEM_USER 替换为您拥有的用户名)
Option 2: (replace YOUR_SYSTEM_USER with the username you have)
sudo mysql -u root # I had to use "sudo" since is new installation
mysql> USE mysql;
mysql> CREATE USER 'YOUR_SYSTEM_USER'@'localhost' IDENTIFIED BY 'YOUR_PASSWD';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'YOUR_SYSTEM_USER'@'localhost';
mysql> UPDATE user SET plugin='auth_socket' WHERE User='YOUR_SYSTEM_USER';
mysql> FLUSH PRIVILEGES;
mysql> exit;
sudo service mysql restart
请记住,如果您使用选项 #2,则必须以系统用户名 (mysql -u YOUR_SYSTEM_USER
) 连接到 MySQL.
Remember that if you use option #2 you'll have to connect to MySQL as your system username (mysql -u YOUR_SYSTEM_USER
).
注意:在某些系统上(例如,Debian 9 (Stretch)) 'auth_socket' 插件被称为 'unix_socket',所以对应的SQL命令应该是:UPDATE user SET plugin='unix_socket' WHERE User='YOUR_SYSTEM_USER';
Note: On some systems (e.g., Debian 9 (Stretch)) the 'auth_socket' plugin is called 'unix_socket', so the corresponding SQL command should be: UPDATE user SET plugin='unix_socket' WHERE User='YOUR_SYSTEM_USER';
从@andy 的评论看来,MySQL 8.x.x 更新/替换了 caching_sha2_password
的 auth_socket
.我没有使用 MySQL 8.x.x 的系统设置来测试这个.但是,上述步骤应该可以帮助您理解问题.回复如下:
From @andy's comment it seems that MySQL 8.x.x updated/replaced the auth_socket
for caching_sha2_password
. I don't have a system setup with MySQL 8.x.x to test this. However, the steps above should help you to understand the issue. Here's the reply:
MySQL 8.0.4 的一个变化是新的默认身份验证插件是caching_sha2_password".新的YOUR_SYSTEM_USER"将拥有此身份验证插件,您现在可以使用mysql -u YOUR_SYSTEM_USER -p"从 Bash shell 登录.并在提示中提供该用户的密码.不需要UPDATE user SET plugin";步骤.
对于 8.0.4 默认身份验证插件更新,请参阅 https://mysqlserverteam.com/mysql-8-0-4-new-default-authentication-plugin-caching_sha2_password/
这篇关于错误 1698 (28000):拒绝用户“root"@“localhost"的访问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:错误 1698 (28000):拒绝用户“root"@“localhost"的访问
基础教程推荐
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01