この記事の内容は、Navicat を MySQL8.0 に接続する方法 (効果的) に関するものです。必要な方は参考にしていただければ幸いです。
今日、MySQL 8.0 をダウンロードしましたが、Navicat が接続できず、常にエラー 1251 を報告することがわかりました。理由は、MySQL 8.0 バージョンの暗号化方式が MySQL の暗号化方式と異なるためです。 5.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): 'root'@'%' の ALTER USER 操作が失敗しました: リモート アクセス権限が正しくありません。最初にデータベースを選択し、確認してから変更します:
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)
以上がNavicat を MySQL8.0 に接続する方法 (有効)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。