知乎專欄 | 多維度架構 |
這個故障出現在 MySQL 8.0 上,用戶使用 mysql client 5.7 連結 MySQL 8.0 提示如下
[root@netkiller ~]# mysql -h 193.112.95.53 -uroot -p Enter password: ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded: /usr/lib64/mysql/plugin/caching_sha2_password.so: cannot open shared object file: No such fileor directory
解決方案,創建用戶使用 mysql_native_password密碼
mysql> CREATE USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'pMQiEge1ikst7S_6tlXzBOmt_4b'; Query OK, 0 rows affected (0.08 sec) mysql> grant all on *.* to 'root'@'%'; Query OK, 0 rows affected (0.08 sec)
重新連結
[root@netkiller ~]# mysql -h 193.112.95.53 -uneo -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 24 Server version: 8.0.11 MySQL Community Server - GPL Copyright (c) 2000, 2016, 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>