共计 1531 个字符,预计需要花费 4 分钟才能阅读完成。
自动写代码机器人,免费开通
这篇文章主要介绍了 Navicat 如何连接 MySQL8.0,具有一定借鉴价值,需要的朋友可以参考下。希望大家阅读完这篇文章后大有收获。下面让丸趣 TV 小编带着大家一起了解一下。
今天下了个 MySQL8.0,发现 Navicat 连接不上,总是报错 1251;
原因是 MySQL8.0 版本的加密方式和 MySQL5.0 的不一样,连接会报错。
试了很多种方法,终于找到一种可以实现的:
更改加密方式
1. 先通过命令行进入 mysql 的 root 账户:
PS C:\Windows\system32 mysql -uroot -p
再输入 root 的密码:
Enter password: ******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 18
Server version: 8.0.11 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
2. 更改加密方式:
mysql ALTER USER root @ localhost IDENTIFIED BY password PASSWORD EXPIRE NEVER;
Query OK, 0 rows affected (0.10 sec)
3. 更改密码:
mysql ALTER USER root @ localhost IDENTIFIED WITH mysql_native_password BY password
Query OK, 0 rows affected (0.35 sec)
4. 刷新:
mysql FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.28 sec)
// 如果报错 ERROR 1396 (HY000): Operation ALTER USER failed for root @ %:
则是远程访问权限不正确,先选择数据库,查看一下再更改:
mysql use mysql;
Database changed
mysql select user,host from user;
+------------------+-----------+
| user | host |
+------------------+-----------+
| mysql.infoschema | localhost |
| mysql.session | localhost |
| mysql.sys | localhost |
| root | localhost |
+------------------+-----------+
rows in set (0.00 sec)
感谢你能够认真阅读完这篇文章,希望丸趣 TV 小编分享 Navicat 如何连接 MySQL8.0 内容对大家有帮助,同时也希望大家多多支持丸趣 TV,关注丸趣 TV 行业资讯频道,遇到问题就找丸趣 TV,详细的解决方法等着你来学习!
向 AI 问一下细节
正文完