今天手賤更新了MySQL 8.0
第一個問題:Navicat連接不上數(shù)據(jù)庫
安裝的mysql為localhost:3306,配置一切默認,安裝后打開Navicat 12 新建連接,直接報錯
authentication plugin 'caching_sha2_password'
身份驗證插件不能被加載
查了下官方文檔6.5.1.3 Caching SHA-2 Pluggable Authentication
原來在MySQL 8.0中,caching_sha2_password取代了mysql_native_password成為默認的身份驗證插件,官方給出的解決方案如下
1、重新配置服務(wù)器以恢復(fù)到以前的默認身份驗證插件(mysql_native_password)。
[mysqld]
default_authentication_plugin=mysql_native_password
該設(shè)置允許8.0之前的客戶端連接到8.0服務(wù)器,但是,該設(shè)置應(yīng)被視為臨時設(shè)置,而不是長期或永久性解決方案,因為它會導(dǎo)致使用有效設(shè)置創(chuàng)建的新帳戶放棄提供的改進的身份驗證安全性 caching_sha2_password。
2、將根管理帳戶的身份驗證方式更改為mysql_native_password。
對于新的MySQL 8.0安裝,在初始化數(shù)據(jù)目錄時,將創(chuàng)建帳戶'root'@'localhost',并且該帳戶將默認使用caching_sha2_password。連接到服務(wù)器root并使用ALTER USER 如下更改帳戶身份驗證插件和密碼:
ALTER USER 'root'@'localhost'
IDENTIFIED WITH mysql_native_password
BY 'password';
至此,解決了MySQL 8.0的默認身份校驗更換問題。
第二個問題:Caused by: java.sql.SQLException: Unknown initial character set index '255'...
在更新完數(shù)據(jù)庫后,本地啟了一個java小工程,連接數(shù)據(jù)庫跑了個測試程序直接拋出異常,叕查了一下官方文檔 Changes in MySQL 8.0.1 (2017-04-10, Development Milestone) ,原來是8.0.1的版本將Unicode字符集支持中進行了幾項重要更改,默認字符集已從更改latin1為 utf8mb4。而這個這個系統(tǒng)默認 collation_server 和 collocation_database 系統(tǒng)變量由 latin1_swedish_ci 變?yōu)?utf8mb4_0900_ai_ci。
解決辦法:所有這些更改都已經(jīng)在新版本的MySQL連接器Java中進行了處理,不需要配置MySQL。所以只需要升級MYSQL的版本即可,將5.1.6更改為5.1.44,問題完美解決。
dependency>
groupId>mysql/groupId>
artifactId>mysql-connector-java/artifactId>
version>5.1.44/version>
/dependency>
問題三安裝完成后進入數(shù)據(jù)庫show databases;、或者嘗試更改權(quán)限時報錯
ERROR 1449 (HY000): The user specified as a definer ('mysql.infoschema'@'localhost') does not exist
Table 'mysql.role_edges' doesn't exist
解決方法
mysql_upgrade -u root -p;
問題四:在客戶端成功連接數(shù)據(jù)庫之后,發(fā)現(xiàn)項目里的pdo連接mysql又報錯了。
Next PDOException: SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client [caching_sha2_password] in /vendor/yiisoft/yii2/db/Connection.php:687
這個錯可能是mysql默認使用caching_sha2_password作為默認的身份驗證插件,而不再是mysql_native_password,但是客戶端暫時不支持這個插件導(dǎo)致的。官方文檔說明
In MySQL 8.0, caching_sha2_password is the default authentication plugin rather than mysql_native_password. For information about the implications of this change for server operation and compatibility of the server with clients and connectors, see caching_sha2_password as the Preferred Authentication Plugin.
在MySQL 8.0中,caching_sha2_password是默認的身份驗證插件,而不是mysql_native_password。有關(guān)此更改對服務(wù)器操作的影響以及服務(wù)器與客戶端和連接器的兼容性的信息,請參閱caching_sha2_password作為首選身份驗證插件。
解決方法
編輯my.cnf文件,更改默認的身份認證插件。
在[mysqld]中添加下邊的代碼
default_authentication_plugin=mysql_native_password
然后重啟mysql
網(wǎng)站終于正常打開了。。。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- mysql遷移至8.0時的注意事項(小結(jié))
- 淺談mysql8.0新特性的坑和解決辦法(小結(jié))
- mysql8.0.20安裝與連接navicat的方法及注意事項
- 使用JDBC連接Mysql 8.0.11出現(xiàn)了各種錯誤的解決
- MySql 8.0及對應(yīng)驅(qū)動包匹配的注意點說明