MySQL8.0 以降のバージョンに接続すると、navicat は常にエラー 1251 を報告します。その理由は、MySQL8.0 バージョンの暗号化方式が MySQL5.0 の暗号化方式と異なるためです。接続はエラーを報告します。以下に具体的な解決策を紹介します。
推奨チュートリアル: MySQL データベース入門ビデオ チュートリアル
1. まず、コマンド ラインから mysql と入力します。 root アカウント:
PS C:\Windows\system32> mysql -uroot -p
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>
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; Query OK, 0 rows affected (0.10 sec)
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123'; Query OK, 0 rows affected (0.35 sec)
mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.28 sec)
mysql> use mysql; Database changed mysql> select user,host from user; +------------------+-----------+ | user | host | +------------------+-----------+ | mysql.infoschema | localhost | | mysql.session | localhost | | mysql.sys | localhost | | root | localhost | +------------------+-----------+ 5 rows in set (0.00 sec)
以上がナビキャットエラー1251の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。