我将 MySQL 工作台升级到 8.0 版,将 MySQL 服务器升级到 8.0.15 版。我重新启动计算机并打开工作台。我找到了我的旧联系。当我单击测试连接时,我得到了成功的结果。
当我双击我的连接时,我收到此错误消息。
我尝试使用并重置密码登录到 MySQL 服务器:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
请问,可能是什么问题?
当我在旧版本中建立连接时,我忘记了端口号是什么。
编辑:
在终端中,这是一次尝试,似乎有效。只是我以前工作的工作台。请注意,我使用的是 Ubunut 18.04:
$ mysql -u root -p -h 127.0.0.1 -P 3306
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 37
Server version: 8.0.15 MySQL Community Server - GPL
Copyright (c) 2000, 2019, 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>
SQL v8.0 更改了身份验证协议:
在 v8.0 上,它使用
caching_sha2_password
.之前是
mysql_native_password
。要在以前的版本上创建新用户,它是:
要在 v8.0 上创建新用户,请运行以下命令(当然,用您自己的方式替换 root 和密码!):
要更改旧版本用户的密码加密:
我希望你能解决你的问题:)
来自评论:
您收到的错误消息是:
为了解决这个问题,运行,
在终端。如果不能解决问题,运行
在 MySQL 中。