您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“MySQL 8.0走過的坑有哪些”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“MySQL 8.0走過的坑有哪些”這篇文章吧。
第一個問題:Navicat連接不上數據庫
安裝的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、重新配置服務器以恢復到以前的默認身份驗證插件(mysql_native_password)。
[mysqld] default_authentication_plugin=mysql_native_password
該設置允許8.0之前的客戶端連接到8.0服務器,但是,該設置應被視為臨時設置,而不是長期或永久性解決方案,因為它會導致使用有效設置創建的新帳戶放棄提供的改進的身份驗證安全性 caching_sha2_password。
2、將根管理帳戶的身份驗證方式更改為mysql_native_password。
對于新的MySQL 8.0安裝,在初始化數據目錄時,將創建帳戶'root'@'localhost',并且該帳戶將默認使用caching_sha2_password。連接到服務器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'...
在更新完數據庫后,本地啟了一個java小工程,連接數據庫跑了個測試程序直接拋出異常,叕查了一下官方文檔 Changes in MySQL 8.0.1 (2017-04-10, Development Milestone) ,原來是8.0.1的版本將Unicode字符集支持中進行了幾項重要更改,默認字符集已從更改latin1為 utf8mb4。而這個這個系統默認 collation_server 和 collocation_database 系統變量由 latin1_swedish_ci 變為 utf8mb4_0900_ai_ci。
解決辦法:所有這些更改都已經在新版本的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>
問題三安裝完成后進入數據庫show databases;、或者嘗試更改權限時報錯
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;
問題四:在客戶端成功連接數據庫之后,發現項目里的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,但是客戶端暫時不支持這個插件導致的。官方文檔說明
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。有關此更改對服務器操作的影響以及服務器與客戶端和連接器的兼容性的信息,請參閱caching_sha2_password作為首選身份驗證插件。
解決方法
編輯my.cnf文件,更改默認的身份認證插件。
$ vi /etc/my.cnf
在[mysqld]中添加下邊的代碼
default_authentication_plugin=mysql_native_password
然后重啟mysql
$ service mysqld restart
網站終于正常打開了。。。
以上是“MySQL 8.0走過的坑有哪些”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。