龍巖易富通網(wǎng)絡(luò)科技有限公司

龍巖小程序開發(fā),龍巖分銷系統(tǒng)

MySQL Workbench 連接數(shù)據(jù)庫提示SSL connection error: SSL is required but the server doesn't support it

2022.07.22 | 1880閱讀 | 0條評(píng)論 | 數(shù)據(jù)庫

mysql下載器下載了mysql worbench后無法連接遠(yuǎn)端數(shù)據(jù)庫,提示SSL之類的錯(cuò)誤


 

 

解決方案一:不使用SSL,在Advance TAB頁的others框中輸入?yún)?shù):useSSL=0,就可以連接上了。

 

 

 

有時(shí)候本地連接可以,但遠(yuǎn)程連接不行,并且報(bào)錯(cuò):Host is not allowed to connect to this MySQL server。那一般是沒有允許遠(yuǎn)程登錄來的,解決辦法也很簡單:



//先進(jìn)入mysqluse mysql

//允許root用戶從所有IP遠(yuǎn)程訪問

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

//刷新

flush privileges;


解決方案二:

my.cnf文件文件中的 [mysqld] 段添加 skip-ssl 表示跳過ssl

贊 (

發(fā)表評(píng)論