主頁(yè) > 知識(shí)庫(kù) > mysql遷移至8.0時(shí)的注意事項(xiàng)(小結(jié))

mysql遷移至8.0時(shí)的注意事項(xiàng)(小結(jié))

熱門標(biāo)簽:上海市三維地圖標(biāo)注 電話機(jī)器人是電腦呼號(hào)嗎 南寧外呼系統(tǒng)招商 博樂電銷機(jī)器人 云南大數(shù)據(jù)外呼系統(tǒng) 400電話到哪辦理優(yōu)惠 鄭州網(wǎng)絡(luò)外呼系統(tǒng)價(jià)錢 機(jī)器人打電銷電話 怎么更改高德地圖標(biāo)注

密碼模式

PDO::__construct(): The server requested authentication method unknown to the client [caching_sha2_password]

mysql8 之后,默認(rèn)的密碼模式改為 caching_sha2_password,新的模式需要新的驅(qū)動(dòng),至少現(xiàn)在 pdo / navicat 還沒給出,所以我們還是得切換成老的 mysql_native_password 模式。

`mysql_native_password`:7.0 以下
`caching_sha2_password`:8.0 以上

1、my.cnf 配置默認(rèn)的密碼模式

[mysqld]
default_authentication_plugin=mysql_native_password

2、更新賬號(hào)的密碼模式

# 創(chuàng)建新的賬號(hào)
create user 'root'@'%' identified with mysql_native_password by '123456';

# 已存在的賬號(hào)
alter user 'root'@'%' identified with mysql_native_password by '123456';

3、如果你需要授權(quán)

# 授權(quán)也不能兼并創(chuàng)建賬號(hào)了,只能授權(quán)
grant all privileges on *.* to 'root'@'%' with grant option;
flush privileges;

密碼復(fù)雜度策略

ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

密碼復(fù)雜度驗(yàn)證策略導(dǎo)致的,關(guān)閉后設(shè)定即可

set global validate_password.policy=0;
set global validate_password.length=6;

默認(rèn)編碼

PDO::__construct(): Server sent charset (255) unknown to the client. Please, report to the developers

設(shè)定 mysql 服務(wù)的默認(rèn)編碼

# Default Homebrew MySQL server config
[client]
default_character_set=utf8mb4

[mysql]
default_character_set=utf8mb4

[mysqld]
default_authentication_plugin=mysql_native_password
character_set_server=utf8mb4
collation_server=utf8mb4_general_ci

遠(yuǎn)程訪問

1、my.conf 注釋掉本地監(jiān)聽

[mysqld]
#bind_address=127.0.0.1

2、更新賬號(hào)的 host

update mysql.user set host='%' where user='root';

到此這篇關(guān)于mysql遷移至8.0時(shí)的注意事項(xiàng)(小結(jié))的文章就介紹到這了,更多相關(guān)mysql遷移至8.0內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • 淺談mysql8.0新特性的坑和解決辦法(小結(jié))
  • mysql8.0.20安裝與連接navicat的方法及注意事項(xiàng)
  • 使用JDBC連接Mysql 8.0.11出現(xiàn)了各種錯(cuò)誤的解決
  • 詳解關(guān)于MySQL 8.0走過的坑
  • MySql 8.0及對(duì)應(yīng)驅(qū)動(dòng)包匹配的注意點(diǎn)說明

標(biāo)簽:杭州 寧夏 益陽(yáng) 恩施 秦皇島 定西 澳門 白銀

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《mysql遷移至8.0時(shí)的注意事項(xiàng)(小結(jié))》,本文關(guān)鍵詞  mysql,遷,移至,8.0時(shí),的,注意事項(xiàng),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《mysql遷移至8.0時(shí)的注意事項(xiàng)(小結(jié))》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于mysql遷移至8.0時(shí)的注意事項(xiàng)(小結(jié))的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章